:root {
    --primary: #278997;
    --primary-dark: #85c54a; /* versão 20% mais escura */
    --secondary: #48c38a ;
    --success: rgb(140, 199, 76);
    --warning: #F59E0B;
    --info: #3B82F6;
    --dark: #1E293B;
    --gray: #64748B;
    --light-gray: #F1F5F9;
    --white: #FFFFFF;
    
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --primary-gradient: linear-gradient(135deg, var(--primary) 0%, #3B82F6 100%);
    --success-gradient: linear-gradient(135deg, var(--success) 0%, #8CC34B 100%); /* cor complementar ajustada */
    --warning-gradient: linear-gradient(135deg, var(--warning) 0%, #FBBF24 100%);
    --info-gradient: linear-gradient(135deg, var(--info) 0%, #60A5FA 100%);
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Integrado com Hero */
.header-with-hero {
    position: relative;
    min-height: 100vh;
    color: var(--white);
}

/* Carrossel Bootstrap Simplificado */
#heroCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
}

#heroCarousel .carousel-inner,
#heroCarousel .carousel-item {
    height: 100%;
}

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay com 70% de opacidade */
    z-index: 0;
}

 
.hero-content {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; /* Adicionei esta linha para centralização horizontal */
    text-align: center; /* Garante que todo o conteúdo interno também fique centralizado */
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgb(51, 144, 159, 0.2), rgba(255, 255, 255, 0.12) 2 8px 10px  !important;
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    border: 2px solid ;
    background: transparent;
    color: #ffffff;

}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: #ffffff; 
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.badge-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255,255,255,0.25);
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    background-color: transparent !important;
    z-index: 10;
    transition: all 0.3s ease;
    width: auto;
    height: 80px;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important;
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    backdrop-filter: blur(8px);
}

/* Logo - Mantendo tamanho original conforme solicitado */
.navbar-brand img {
    height: 160px; /* Tamanho original mantido */
    width: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    height: 160px; /* Mantendo o mesmo tamanho quando scrolled */
}

.navbar-toggler {
    border: none;
    font-size: 1.25rem;
    padding: 0.5rem;
    color: var(--white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Efeitos Hover para os Itens do Menu */
.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, rgb(67, 177, 196), rgb(131, 196, 73));
    transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link:focus,
.nav-link.active {
    color: var(--white) !important;
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.active::after {
    width: 100%;
}

/* Botão com Gradiente Específico */
.btn-primary {
    background: rgb(36, 135, 148);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.3));
    transition: all 0.4s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Responsividade - Ajustes para mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.95);
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .nav-link {
        margin: 0.5rem 0;
        padding: 0.75rem !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .btn-primary {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar {
        height: auto;
        padding: 1rem 0;
    }
    
    /* Garantindo que a logo mantenha seu tamanho em mobile */
    .navbar-brand img {
        height: 160px; /* Mantendo o tamanho original */
        max-width: 100%;
    }
}


/* Seção Sobre Nós */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Container da área (anteriormente da imagem) - Mantido para estrutura de coluna */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    /* A sombra pode ou não ser desejada para um container vazio */
    /* box-shadow: var(--shadow-lg); */
    /* Garante que ocupe espaço se necessário, mas pode ser desnecessário se vazio */
    /* min-height: 100px; */
}


.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.experience-badge span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

/* Container dos itens de features */
.about-features {
    margin-top: 2rem;
}

/* Item individual de feature (ícone + texto) */
.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem; /* Adicionado padding para melhor visualização do hover */
    border-radius: var(--radius-md); /* Adicionado para bordas arredondadas no hover */
    /* --- TRANSIÇÃO PARA MICROINTERAÇÃO SUAVE --- */
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* --- ESTADO HOVER PARA MICROINTERAÇÃO --- */
.feature-item:hover {
    transform: translateY(-5px); 
    background-color: var(--light-gray); 
    box-shadow: var(--shadow-md); 
}

/* Ícone do item de feature */
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.feature-item:hover .feature-icon {
     transform: scale(1.1); /* Efeito de zoom leve */
}

/* Título dentro do conteúdo do feature */
.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

/* Parágrafo dentro do conteúdo do feature */
.feature-content p {
    color: var(--gray);
}

/* Estilos para a seção de estatísticas (se usada) */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Seção AheadExp */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
}

.sub-feature-list {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.sub-feature-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.sub-feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}



/* Seção Serviços AheadExp */
.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(var(--primary), 0.1);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    position: relative;
    padding-right: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}




/* Estilos para a seção de Benefícios */
.benefits-section {
    padding: 80px 0;
    background-color: #f9fafc;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
  }
  
  .highlight {
    color: #3498db;
    font-weight: 700;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .benefit-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .benefit-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
  }
  
  .benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #2c3e50;
  }
  
  .benefit-card p {
    color: #7f8c8d;
    line-height: 1.6;
  }
  
  /* Ícones do Font Awesome */
  @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css");
  
  /* Responsividade */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }
  }




/* Estilos para a seção de Depoimentos */
.testimonials-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 0;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.quote-icon {
    font-size: 2.5rem;
    color: #e2e8f0;
    line-height: 1;
    margin-top: -10px;
}

.testimonial-rating {
    color: #f59e0b;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
    position: relative;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0;
    color: #2d3748;
}

.author-info small {
    font-size: 0.8rem;
    color: #718096;
}

.company-logo {
    width: 160px;
    height: 160px;
    background-color: #ebf8ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3182ce;
    font-size: 1.2rem;
}



/* Responsividade */
@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .client-logo-item {
        padding: 10px;
    }
    
    .client-logo-item i {
        font-size: 1.5rem;
    }
}

/* Rodapé */
.footer-logo {
    height: 160px;
    width: 160px;
    object-fit: contain;
    flex-shrink: 0;
    flex-basis: auto;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form .btn {
    padding: 0.5rem 1rem;
}

/* Responsividade */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-title {
        margin-top: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        padding: 0.75rem 1.25rem;
    }
    
    .experience-badge span {
        font-size: 1.5rem;
    }
}





 /* Estilos para a seção de Contato */
.contact-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.form-control-lg {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .contact-section .card {
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .form-control-lg {
        padding: 0.75rem 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
    }
}