/* ===== VARIÁVEIS E ESTILOS GLOBAIS ===== */
:root {
    /* Cores principais - Tema Futurista */
    --primary-color: #3a86ff;       /* Azul vibrante */
    --secondary-color: #00b4d8;     /* Azul ciano */
    --accent-color: #0077b6;        /* Azul mais escuro */
    
    /* Tons de preto e cinza */
    --dark-color: #121212;          /* Preto quase puro */
    --darker-gray: #1e1e1e;         /* Cinza muito escuro */
    --medium-gray: #2d2d2d;         /* Cinza escuro */
    --light-gray: #e0e0e0;          /* Cinza claro */
    --light-color: #f8f9fa;         /* Branco acinzentado */
    
    /* Cores auxiliares */
    --success-color: #4cc9f0;       /* Azul esverdeado */
    --warning-color: #f8961e;       /* Laranja */
    --danger-color: #ef233c;        /* Vermelho */
    
    /* Efeitos especiais */
    --glow-effect: 0 0 15px rgba(58, 134, 255, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: var(--dark-color);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1, h2, h3, h4 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--light-color);
  }
  
  h1 {
    font-size: 2.8rem;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
  }
  
  h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 20px auto 0;
    border-radius: 2px;
  }
  
  p {
    margin-bottom: 1.2rem;
    color: var(--light-gray);
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
  }
  
  /* ===== BOTÕES ===== */
  .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    box-shadow: var(--glow-effect);
    position: relative;
    overflow: hidden;
  }
  
  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(58, 134, 255, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  }
  
  .whatsapp-button {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  
  .whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.6);
  }
  
  .submit-button {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
  }
  
  .submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  }
  
  /* ===== HEADER ===== */
  .header {
    background-color: rgba(30, 30, 30, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header.scrolled {
    background-color: rgba(30, 30, 30, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    letter-spacing: -0.5px;
  }
  
  .logo:hover {
    transform: scale(1.03);
    color: var(--secondary-color);
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    align-items: center;
  }
  
  .navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .navbar a {
    color: var(--light-gray);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
  }
  
  .navbar a i {
    font-size: 0.9rem;
  }
  
  .navbar a:hover {
    color: var(--primary-color);
    background-color: rgba(58, 134, 255, 0.1);
  }
  
  .navbar a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  
  .navbar a:hover::after {
    width: calc(100% - 36px);
  }
  
  .navbar a.active {
    color: var(--primary-color);
    font-weight: 600;
  }
  
  .cta-nav {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 24px !important;
    margin-left: 10px;
  }
  
  .cta-nav:hover {
    background-color: var(--accent-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--glow-effect);
  }
  
  /* Menu Mobile */
  .mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-gray);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  .mobile-menu:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), 
                url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 200px 0 120px;
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.9;
    color: var(--light-gray);
  }
  
  .hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
  }
  
  .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    background-color: rgba(58, 134, 255, 0.1);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(58, 134, 255, 0.2);
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    background-color: rgba(58, 134, 255, 0.2);
    transform: translateY(-3px);
  }
  
  .feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
  }
  
  /* ===== SERVICES SECTION ===== */
  .services {
    background-color: var(--darker-gray);
    position: relative;
    overflow: hidden;
  }
  
  .services::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(58, 134, 255, 0) 70%);
    z-index: 0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .section-subtitle {
    color: var(--light-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
    position: relative;
    z-index: 1;
  }
  
  .service-card {
    background-color: var(--medium-gray);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    border: 1px solid rgba(58, 134, 255, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 134, 255, 0.05), rgba(0, 180, 216, 0.05));
    z-index: -1;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
  }
  
  .service-card.featured {
    border: 1px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(58, 134, 255, 0.3);
  }
  
  .service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(58, 134, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(58, 134, 255, 0.2);
  }
  
  .service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
  }
  
  .service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light-color);
  }
  
  .service-card p {
    margin-bottom: 20px;
    color: var(--light-gray);
    flex: 1;
  }
  
  .service-card ul {
    margin-top: 25px;
  }
  
  .service-card ul li {
    margin-bottom: 12px;
    color: var(--light-gray);
    position: relative;
    padding-left: 30px;
  }
  
  .service-card ul li::before {
    content: '✓';
    color: var(--success-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1rem;
  }
  
  .popular-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
  }

  /* Estilo para os botões de WhatsApp nos serviços */
.service-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 25px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.service-whatsapp-button:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.5);
}

.service-card .service-whatsapp-button i {
    font-size: 1.2rem;
}

/* Ajuste para o card em destaque */
.service-card.featured .service-whatsapp-button {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 6px 20px rgba(7, 94, 84, 0.4);
}

.service-card.featured .service-whatsapp-button:hover {
    background: linear-gradient(135deg, #075E54, #128C7E);
}
  
  /* ===== ABOUT SECTION ===== */
  .about {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
  }
  
  .about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0) 70%);
    z-index: 0;
  }
  
  .about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
  }
  
  .principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
  }
  
  .principle-item {
    background-color: var(--medium-gray);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .principle-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
  }
  
  .principle-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
  }
  
  .principle-item h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .principle-item p {
    color: var(--light-gray);
  }
  
  .stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
    z-index: 1;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 10px;
  }
  
  .label {
    color: var(--light-gray);
    font-size: 1rem;
    opacity: 0.8;
  }
  
  /* ===== TESTIMONIALS SECTION ===== */
  .testimonials {
    background-color: var(--darker-gray);
    position: relative;
    overflow: hidden;
  }
  
  .testimonials::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.1) 0%, rgba(58, 134, 255, 0) 70%);
    z-index: 0;
  }
  
  .testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .testimonial {
    background-color: var(--medium-gray);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    display: none;
    border: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .testimonial-content {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 30px;
    position: relative;
    line-height: 1.8;
  }
  
  .testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(58, 134, 255, 0.1);
    position: absolute;
    top: -25px;
    left: -15px;
    font-family: Georgia, serif;
    line-height: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
  }
  
  .testimonial-author h4 {
    color: var(--light-color);
    margin-bottom: 5px;
    font-size: 1.2rem;
  }
  
  .testimonial-author span {
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.8;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  
  .slider-controls button {
    background-color: var(--medium-gray);
    border: 1px solid rgba(58, 134, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light-gray);
  }
  
  .slider-controls button:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
  }
  
  .dots {
    display: flex;
    gap: 12px;
  }
  
  .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(58, 134, 255, 0.3);
  }
  
  .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
    border-color: var(--primary-color);
  }
  
  /* ===== BENEFITS SECTION ===== */
  .benefits {
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
  }
  
  .benefits::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, rgba(0, 180, 216, 0) 70%);
    z-index: 0;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
  }
  
  .benefit-item {
    background-color: var(--medium-gray);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
  }
  
  .benefit-item i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover i {
    transform: scale(1.1);
  }
  
  .benefit-item h3 {
    color: var(--light-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  
  .benefit-item p {
    color: var(--light-gray);
  }
  
  /* ===== CONTACT SECTION ===== */
  /* ===== CONTACT SECTION ===== */
.contact {
  background: linear-gradient(rgba(18, 18, 18, 0.95), rgba(18, 18, 18, 0.95)), 
              url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.contact .container {
  width: 95%;
  max-width: 1200px;
  padding: 0 15px;
}

.contact h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.contact-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.contact-info {
  background-color: rgba(30, 30, 30, 0.9);
  padding: 25px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(58, 134, 255, 0.2);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  word-break: break-all;
}

.contact-text {
  font-size: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.email-text {
  word-break: break-all;
}

.info-item i {
  font-size: 1.1rem;
  min-width: 40px;
  height: 40px;
  background-color: rgba(58, 134, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
  margin: 30px 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.whatsapp-button {
  width: 100%;
  padding: 12px;
  font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 992px) {
  .contact-container {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  
  .contact-info {
      padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  .contact h2 {
      font-size: 1.8rem;
  }
  
  .contact-subtitle {
      font-size: 1rem;
  }
  
  .info-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
  }
  
  .contact-text {
      font-size: 0.95rem;
      width: 100%;
  }
  
  .email-text {
      word-break: break-word;
  }
}
  
  .contact-form {
    background-color: var(--medium-gray);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(58, 134, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(30, 30, 30, 0.8);
    color: var(--light-gray);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Estilo específico para o select */
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233a86ff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 40px;
    cursor: pointer;
}

/* Estilo para as opções do select */
.form-group select option {
    background-color: var(--darker-gray);
    color: var(--light-gray);
    padding: 10px;
    border-bottom: 1px solid rgba(58, 134, 255, 0.1);
}

/* Estilo para o hover das opções */
.form-group select option:hover {
    background-color: var(--primary-color) !important;
    color: white;
}

/* Estilo para o foco */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
    background-color: rgba(30, 30, 30, 0.9);
}

/* Estilo para o select aberto */
.form-group select:active,
.form-group select:focus {
    background-color: rgba(30, 30, 30, 0.9);
}

/* Estilo para o placeholder */
.form-group select option[disabled][selected] {
    color: rgba(224, 224, 224, 0.6);
}

/* Estilo para o hover do select */
.form-group select:hover {
    border-color: rgba(58, 134, 255, 0.5);
    background-color: rgba(30, 30, 30, 0.9);
}

/* Estilo para as opções selecionadas */
.form-group select option:checked {
    background-color: var(--primary-color);
    color: white;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Adicionando animação ao abrir o dropdown */
.form-group select:focus {
    animation: fadeIn 0.3s ease-out;
}
  
  /* ===== FOOTER ===== */
  .footer {
    background-color: var(--darker-gray);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(58, 134, 255, 0.1);
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .footer-logo h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--light-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .footer-logo p {
    color: var(--light-gray);
    opacity: 0.8;
    line-height: 1.7;
  }
  
  .footer-links h4 {
    color: var(--light-color);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  }
  
  .footer-links ul li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    opacity: 0.8;
    display: inline-block;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
    opacity: 1;
    transform: translateX(5px);
  }
  
  .footer-contact p {
    color: var(--light-gray);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
  }
  
  .footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(58, 134, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.7;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
  }
  
  .footer-social a {
    color: var(--light-gray);
    transition: all 0.3s ease;
    font-size: 1.1rem;
  }
  
  .footer-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  /* ===== CHATBOT ===== */
  /* ===== CHATBOT ===== */
.chatbot-container {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 360px;
  max-height: 70vh;
  background-color: var(--medium-gray);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  border: 1px solid rgba(58, 134, 255, 0.2);
  display: flex;
  flex-direction: column;
}

.chatbot-container.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.chatbot-header {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 18px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.chatbot-header span {
  font-weight: 600;
  font-size: 1.1rem;
}

.close-chatbot {
  background: none;
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px;
}

.close-chatbot:hover {
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  background-color: var(--darker-gray);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.message {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  position: relative;
  animation: messageFadeIn 0.3s ease-out;
}

@keyframes messageFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.message.bot {
  background-color: var(--medium-gray);
  border-radius: 18px 18px 18px 4px;
  align-self: flex-start;
  color: var(--light-gray);
  border: 1px solid rgba(58, 134, 255, 0.1);
}

.message.user {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 18px 18px 4px 18px;
  align-self: flex-end;
  color: white;
}

.message p {
  margin: 0;
  word-wrap: break-word;
}

/* Quick Questions */
.quick-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 15px;
  background-color: var(--darker-gray);
}

.quick-questions button {
  background-color: rgba(58, 134, 255, 0.1);
  border: 1px solid rgba(58, 134, 255, 0.2);
  color: var(--light-gray);
  padding: 8px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.quick-questions button:hover {
  background-color: rgba(58, 134, 255, 0.2);
  transform: translateY(-2px);
}

/* Typing indicator */
/* Typing indicator */
.typing-indicator {
  display: none;
  padding: 10px 15px;
  align-self: flex-start;
}

.typing-indicator.active {
  display: flex;
  gap: 5px;
}

.typing-indicator span {
  height: 8px;
  width: 8px;
  background-color: var(--light-gray);
  border-radius: 50%;
  display: inline-block;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-5px); }
}

/* Chatbot input area */
.chatbot-input-area {
  display: flex;
  padding: 15px;
  border-top: 1px solid rgba(58, 134, 255, 0.1);
  background-color: var(--medium-gray);
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid rgba(58, 134, 255, 0.2);
  border-radius: 50px;
  outline: none;
  background-color: var(--darker-gray);
  color: var(--light-gray);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.chatbot-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(58, 134, 255, 0.2);
}

.chatbot-send-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-left: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-send-btn:hover {
  transform: scale(1.1);
}

/* Chatbot toggle button */
.chatbot-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(58, 134, 255, 0.4);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 15px 40px rgba(58, 134, 255, 0.6);
}

/* Responsividade */
@media (max-width: 576px) {
  .chatbot-container {
      width: 90%;
      max-width: 320px;
      right: 5%;
      bottom: 80px;
  }
  
  .chatbot-messages {
      height: 50vh;
      padding: 15px;
  }
  
  .message {
      max-width: 90%;
      padding: 10px 15px;
      font-size: 0.9rem;
  }
  
  .chatbot-toggle {
      width: 55px;
      height: 55px;
      font-size: 1.4rem;
      bottom: 20px;
      right: 20px;
  }
  
  .quick-questions {
      padding: 0 15px 10px;
  }
  
  .quick-questions button {
      font-size: 0.75rem;
      padding: 6px 10px;
  }
}
  /* ===== ANIMAÇÕES ===== */
  .fade-in {
    animation: fadeIn 0.8s ease forwards;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* ===== RESPONSIVIDADE ===== */
  @media (max-width: 1200px) {
    .container {
      padding: 0 30px;
    }
  }
  
  @media (max-width: 992px) {
    h1 {
      font-size: 2.5rem;
    }
    
    h2 {
      font-size: 2rem;
    }
    
    .hero {
      padding: 180px 0 100px;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .navbar ul {
      gap: 15px;
    }
    
    .navbar a {
      padding: 8px 16px;
      font-size: 0.9rem;
    }
    
    .stats {
      gap: 40px;
    }
    
    .number {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 768px) {
    section {
      padding: 70px 0;
    }
    
    .mobile-menu {
      display: block;
    }
    
    .navbar ul {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 90%;
      max-width: 400px;
      height: calc(100vh - 80px);
      background-color: var(--darker-gray);
      flex-direction: column;
      align-items: flex-start;
      padding: 30px;
      box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
      transition: left 0.4s ease;
      gap: 10px;
      border-right: 1px solid rgba(58, 134, 255, 0.1);
    }
    
    .navbar ul.active {
      left: 0;
    }
    
    .navbar a {
      width: 100%;
      padding: 14px 20px;
      border-radius: 8px;
      margin-bottom: 5px;
      font-size: 1rem;
      border: 1px solid rgba(58, 134, 255, 0.1);
    }
    
    .navbar a:hover {
      background-color: rgba(58, 134, 255, 0.1);
    }
    
    .navbar a::after {
      display: none;
    }
    
    .cta-nav {
      margin-left: 0;
      margin-top: 10px;
      justify-content: center;
    }
    
    .hero {
      padding: 160px 0 80px;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    
    .hero .subtitle {
      font-size: 1.1rem;
    }
    
    .services-grid, .principles, .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .service-card, .principle-item, .benefit-item {
      padding: 30px;
    }
    
    .stats {
      gap: 30px;
    }
    
    .number {
      font-size: 2.5rem;
    }
    
    .chatbot-container {
      width: 320px;
      right: 20px;
    }
    
    .chatbot-toggle {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
      bottom: 25px;
      right: 25px;
    }
  }
  
  @media (max-width: 576px) {
    .container {
      padding: 0 20px;
    }
    
    section {
      padding: 60px 0;
    }
    
    h1 {
      font-size: 2.2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero {
      padding: 140px 0 70px;
    }
    
    .hero h1 {
      font-size: 2.2rem;
    }
    
    .hero .subtitle {
      font-size: 1rem;
    }
    
    .hero-features {
      flex-direction: column;
      align-items: center;
      gap: 15px;
      margin-top: 40px;
    }
    
    .feature-item {
      width: 100%;
      max-width: 280px;
    }
    
    .service-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
    }
    
    .service-icon i {
      font-size: 1.6rem;
    }
    
    .service-card h3 {
      font-size: 1.4rem;
    }
    
    .stats {
      gap: 20px;
    }
    
    .number {
      font-size: 2.2rem;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-bottom {
      flex-direction: column;
      gap: 15px;
      text-align: center;
    }
    
    .chatbot-container {
      width: 280px;
      right: 15px;
      bottom: 80px;
    }
    
    .chatbot-toggle {
      width: 55px;
      height: 55px;
      font-size: 1.4rem;
      bottom: 20px;
      right: 20px;
    }
  }