/* ========================================
   PÁGINA DE CONTATOS - CSS ESPECÍFICO
   ======================================== */

/* ========================================
   1. FORMULÁRIO FUTURISTA
   ======================================== */
.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-futuristic {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(46, 61, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-futuristic::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
}

.contact-form-futuristic .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-futuristic label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #1f2937;
  font-size: 0.9rem;
}

.contact-form-futuristic input,
.contact-form-futuristic select,
.contact-form-futuristic textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.contact-form-futuristic input:focus,
.contact-form-futuristic select:focus,
.contact-form-futuristic textarea:focus {
  outline: none;
  border-color: #2e3d6a;
  box-shadow: 0 0 0 3px rgba(46, 61, 106, 0.1);
  transform: translateY(-2px);
}

.contact-form-futuristic small {
  display: block;
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.8rem;
}

.contact-form-futuristic button[type="submit"] {
  width: 100%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-form-futuristic button[type="submit"]:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ========================================
   2. CTAs DE CONTATO ESTILIZADOS
   ======================================== */
.contact-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.25rem;
  margin-top: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
}

.contact-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-cta a {
  color: #2e3d6a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.05));
  border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-cta::before {
  background: linear-gradient(90deg, #25d366, #128c7e, #25d366);
}

.whatsapp-cta a {
  color: #25d366;
}

/* Phone CTA */
.phone-cta {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  border-color: rgba(59, 130, 246, 0.3);
}

.phone-cta::before {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8, #3b82f6);
}

.phone-cta a {
  color: #3b82f6;
}

/* Email CTA */
.email-cta {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  border-color: rgba(139, 92, 246, 0.3);
}

.email-cta::before {
  background: linear-gradient(90deg, #8b5cf6, #7c3aed, #8b5cf6);
}

.email-cta a {
  color: #8b5cf6;
}

/* Partnership CTA */
.partnership-cta {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-color: rgba(245, 158, 11, 0.3);
}

.partnership-cta::before {
  background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
}

.partnership-cta a {
  color: #f59e0b;
}

/* ========================================
   3. SEÇÃO CTA FINAL ESTILIZADA
   ======================================== */
.cta-emphasis {
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  padding: 4rem 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-emphasis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.cta-emphasis .container {
  position: relative;
  z-index: 2;
}

.cta-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f2937;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-emphasis h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
}

.cta-emphasis h2 .highlight {
  color: #fbbf24;
}

.cta-emphasis p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.cta-urgency {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.cta-urgency p {
  margin: 0;
  color: #fca5a5;
  font-weight: 600;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-guarantees .guarantee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.cta-guarantees .guarantee-item i {
  color: #fbbf24;
  font-size: 1rem;
}

/* ========================================
   4. CLASSE FEATURES PRINCIPAL
   ======================================== */
.features {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
}

/* ========================================
   5. RESPONSIVIDADE
   ======================================== */
@media (max-width: 768px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  /* CSS específico para os 3 cards em linha */
  .three-cards-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem !important;
  }
  
  .feature {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .feature::before {
    height: 2px;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
  
  .map-container iframe {
    height: 180px;
  }
  
  .map-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .map-container-large iframe {
    height: 300px;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .map-placeholder-content {
    padding: 1.5rem;
  }
  
  .map-placeholder-content i {
    font-size: 3rem;
  }
  
  .map-placeholder-content h4 {
    font-size: 1.25rem;
  }
  
  .map-placeholder-content p {
    font-size: 1rem;
  }
  
  .map-features {
    gap: 1rem;
  }
  
  .map-feature {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .contact-form-futuristic {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }
  
  .contact-form-futuristic::before {
    height: 2px;
  }
  
  .contact-cta {
    padding: 1rem;
    border-radius: 12px;
  }
  
  .cta-emphasis h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-guarantees {
    gap: 1rem;
  }
  
  .cta-guarantees .guarantee-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  /* CSS específico para os 3 cards em linha */
  .three-cards-row {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .feature {
    padding: 1.25rem;
    border-radius: 12px;
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .map-container iframe {
    height: 160px;
  }
  
  .map-card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .map-container-large iframe {
    height: 250px;
  }
  
  .map-placeholder {
    height: 250px;
  }
  
  .map-placeholder-content {
    padding: 1.25rem;
  }
  
  .map-placeholder-content i {
    font-size: 2.5rem;
  }
  
  .map-placeholder-content h4 {
    font-size: 1.125rem;
  }
  
  .map-placeholder-content p {
    font-size: 0.9rem;
  }
  
  .map-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
  
  .map-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .map-feature {
    padding: 0.35rem 0.7rem;
    font-size: 0.75rem;
  }
  
  .contact-form-futuristic {
    padding: 1.5rem 1rem;
    border-radius: 12px;
  }
  
  .contact-cta {
    padding: 0.75rem;
    border-radius: 8px;
  }
  
  .cta-emphasis {
    padding: 3rem 0;
  }
  
  .cta-emphasis h2 {
    font-size: 1.75rem;
  }
  
  .cta-emphasis p {
    font-size: 1rem;
  }
}

/* ========================================
   5. ANIMAÇÕES
   ======================================== */
@keyframes gradient-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes shine-rotate {
  0% { transform: rotate(45deg) translateX(-100%); }
  100% { transform: rotate(45deg) translateX(100%); }
}

/* ========================================
   6. CARDS FUTURISTAS PARA SEÇÕES
   ======================================== */
.contact-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

/* CSS específico para os 3 cards em linha */
.three-cards-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
}

/* Forçar grid para todas as telas */
.three-cards-row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  margin-top: 3rem !important;
}

/* Cards com altura igual e alinhamento correto */
.three-cards-row .feature {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 320px !important;
}

/* Forçar display flex para todos os features */
.feature {
  display: flex !important;
  flex-direction: column !important;
}

/* Conteúdo do card distribuído */
.three-cards-row .feature .feature-icon {
  flex-shrink: 0 !important;
  margin-bottom: 1.5rem !important;
}

.three-cards-row .feature h3 {
  flex-shrink: 0 !important;
  margin-bottom: 1rem !important;
}

.three-cards-row .feature p {
  flex: 1 !important;
  margin-bottom: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.three-cards-row .feature .feature-badge {
  margin-top: auto !important;
  flex-shrink: 0 !important;
}

.contact-features .feature {
  background: linear-gradient(135deg, #ffffff, #f8fafc) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(46, 61, 106, 0.1) !important;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(46, 61, 106, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
}

.feature:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(46, 61, 106, 0.2);
  border-color: rgba(46, 61, 106, 0.3);
}

.feature:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Ícone WhatsApp (Verde) */
.feature:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.feature:nth-child(1) .feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
}

/* Ícone Telefone (Azul) */
.feature:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.feature:nth-child(2) .feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
  animation-delay: 0.5s;
}

/* Ícone Email (Roxo) */
.feature:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.feature:nth-child(3) .feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
  animation-delay: 1s;
}

/* Ícone Canal de Parcerias (Laranja) */
.feature:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.feature:nth-child(4) .feature-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  animation: shine-rotate 2s linear infinite;
  animation-delay: 1.5s;
}

.feature h3 {
  font-size: 1.5rem !important;
  color: #1f2937 !important;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.feature p {
  font-size: 1rem !important;
  color: #374151 !important;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.feature-badge {
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  margin-top: 1rem;
  width: 100%;
  box-shadow: 0 2px 8px rgba(46, 61, 106, 0.2);
}

/* ========================================
   SEÇÃO DO MAPA DEDICADA
   ======================================== */
.map-section {
  margin-top: 2rem;
}

.map-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(46, 61, 106, 0.1);
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2e3d6a, #3d4c7a, #fbbf24, #2e3d6a);
  background-size: 200% 100%;
  animation: gradient-flow 3s linear infinite;
}

.map-info {
  margin-bottom: 2rem;
  text-align: center;
}

.map-details h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.map-details h3 i {
  color: #2e3d6a;
  font-size: 1.25rem;
}

.map-details p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.map-details p strong {
  color: #1f2937;
  font-weight: 600;
}

.map-features {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.map-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(46, 61, 106, 0.2);
}

.map-feature i {
  font-size: 1rem;
  color: #fbbf24;
}

.map-container-large {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.map-container-large:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-container-large iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 16px;
  transition: all 0.3s ease;
}

/* Placeholder do mapa */
.map-placeholder {
  display: block;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.map-placeholder:hover {
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-placeholder-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #2e3d6a;
  padding: 2rem;
}

.map-placeholder-content i {
  font-size: 4rem;
  color: #2e3d6a;
  margin-bottom: 1rem;
  display: block;
}

.map-placeholder-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1f2937;
}

.map-placeholder-content p {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.map-cta {
  background: linear-gradient(135deg, #2e3d6a, #3d4c7a);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(46, 61, 106, 0.3);
}

/* Mapa pequeno para cards (mantido para compatibilidade) */
.map-container {
  margin: 1rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
}

/* ========================================
   7. ESTILOS ESPECÍFICOS PARA PÁGINA DE CONTATOS
   ======================================== */
.page-contatos .hero {
  background: #ffffff;
}

.page-contatos .hero-overlay {
  display: none;
}

.page-contatos .hero h1,
.page-contatos .hero-description,
.page-contatos .hero-benefits {
  color: #2e3d6a;
  text-shadow: none;
}

.page-contatos .hero h1 .highlight {
  color: #fbbf24;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


