<!-- ==================== CSS EXCLUSIVO PARA SEÇÃO SEO ==================== -->
<style>
/* Prefixo: zip3-seo para evitar conflitos */

.zip3-seo-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 0;
}

.zip3-seo-content {
  padding: 60px 20px;
  background: #fff;
}

.zip3-seo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.zip3-seo-title {
  font-size: 36px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.zip3-seo-text {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}

.zip3-seo-subtitle {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: 600;
}

.zip3-seo-highlight-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 35px;
  border-radius: 15px;
  margin: 35px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.zip3-seo-highlight-title {
  font-size: 24px;
  color: #FF6B00;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: center;
}

.zip3-seo-list {
  font-size: 17px;
  line-height: 2.4;
  color: #555;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.zip3-seo-list-item {
  padding: 12px 0;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.zip3-seo-list-item:last-child {
  border-bottom: none;
}

.zip3-seo-list-item:hover {
  padding-left: 10px;
  color: #FF6B00;
}

.zip3-seo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.zip3-seo-card {
  padding: 25px;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.zip3-seo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-color: #FF6B00;
}

.zip3-seo-card-title {
  font-size: 20px;
  color: #FF6B00;
  margin-bottom: 15px;
  font-weight: 600;
}

.zip3-seo-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.zip3-seo-tip-box {
  background: linear-gradient(135deg, #fff3cd 0%, #fff8e1 100%);
  padding: 30px;
  border-left: 6px solid #FF6B00;
  margin: 35px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 3px 12px rgba(255,107,0,0.1);
}

.zip3-seo-social-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 30px;
  border-radius: 15px;
  margin: 45px 0;
  text-align: center;
}

.zip3-seo-social-title {
  font-size: 26px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.zip3-seo-social-subtitle {
  font-size: 17px;
  color: #666;
  margin-bottom: 30px;
}

.zip3-seo-social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.zip3-seo-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.zip3-seo-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.zip3-seo-social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.zip3-seo-social-facebook {
  background: #1877F2;
}

.zip3-seo-social-tiktok {
  background: #000;
}

.zip3-seo-social-youtube {
  background: #FF0000;
}

/* Responsivo */
@media (max-width: 768px) {
  .zip3-seo-title {
    font-size: 28px;
  }
  
  .zip3-seo-subtitle {
    font-size: 22px;
  }
  
  .zip3-seo-text {
    font-size: 16px;
    text-align: left;
  }
  
  .zip3-seo-grid {
    grid-template-columns: 1fr;
  }
  
  .zip3-seo-social-links {
    flex-direction: column;
    align-items: center;
  }
  
  .zip3-seo-social-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .zip3-seo-content {
    padding: 40px 15px;
  }
  
  .zip3-seo-title {
    font-size: 24px;
  }
  
  .zip3-seo-highlight-box,
  .zip3-seo-tip-box,
  .zip3-seo-social-box {
    padding: 20px;
  }
}
</style>