@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800;900&display=swap');

/* ===== SERVICES HERO ===== */
.services-hero {
    padding: 120px 0;
    background-color: #202D53;
}
.services-hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 200px 0 150px;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.services-hero {
    padding: 150px 0 80px; /* Aumenta o padding-top para mobile */
}

@media (max-width: 768px) {
    .services-hero {
        padding-top: 100px; /* Espaço extra abaixo da navbar */
    }
    
    .services-hero h1 {
        margin-top: 30px; /* Garante distância da navbar */
        font-size: 2.2rem; /* Reduz tamanho se necessário */
    }
}
/* Garante consistência entre todas as seções */
.service-block {
    margin-bottom: 80px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start; /* Alinha à esquerda */
}

.tag-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto; /* Não cresce/não encolhe */
    text-align: center;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-tags {
        gap: 8px;
    }
    
    .tag-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-tags {
        justify-content: center; /* Centraliza em telas muito pequenas */
    }
}

.services-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 130px;
    color: white;
}
.hero-text{
    margin-top: 100px;
}
.hero-text p {
    
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* ===== SERVICE BLOCKS ===== */
.service-block {
    margin-bottom: 100px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.service-description p {
    margin-bottom: 15px;
    max-width: 800px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tag-btn {
    padding: 8px 20px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.tag-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ===== MODAL ===== */
.service-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1050;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background: white;
    width: 90%;
    max-width: 800px;
    border-radius: 10px;
    padding: 40px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

.modal-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    width: 30%;
    font-size: 1.8rem;
    font-weight: 600;
}

.modal-divider {
    height: 2px;
    background: #000;
    flex-grow: 1;
    margin-left: 20px;
}

.modal-text {
    padding-right: 20%;
}

.modal-text p {
    margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .modal-header h3 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .modal-divider {
        width: 100%;
        margin-left: 0;
    }
    
    .modal-text {
        padding-right: 0;
    }
}
/* Key Figures Section */
.key-figures-section {
  padding: 80px 0;
  background-color: #000; /* Cor de fundo igual ao mini-banner */
  color: #fff;
}

.key-figures-title {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.key-figure-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.key-figure-number {
  font-size: 4rem !important;
  font-weight: 700;
  color: #ff3e41; /* Cor destacada */
  line-height: 1;
}

.key-figure-text {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 10px;
}

/* Responsividade */
@media (max-width: 992px) {
  .key-figure-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .key-figures-title {
    font-size: 1.8rem;
  }
  
  .key-figure-number {
    font-size: 2.5rem;
  }
  
  .key-figure-text {
    font-size: 1rem;
  }
}
:root {
    --primary-color: #202D53;
    --secondary-color: #FCFAE6;
    --text-color: #333;
    --white: #fff;
    --black: #000;
}
p, span, li {
    font-family: 'Poppins', sans-serif;
    
    font-weight: 600;
  }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    font-weight: 800;
}

/* Header */
.header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header__logo i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.burger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 24px;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
}

/* Menu Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 35%;
    height: 100%;
    background-color: var(--black);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.nav-overlay.active {
    right: 0;
}

.nav-content {
    padding: 40px;
    position: relative;
    height: 100%;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.close-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
}

.close-menu span:first-child {
    transform: rotate(45deg);
}

.close-menu span:last-child {
    transform: rotate(-45deg);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.nav-menu li {
    margin-bottom: 20px;
}

.nav-menu li a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
}

.nav-menu li.active a {
    text-decoration: underline;
}

.nav-menu li.highlight a {
    color: var(--secondary-color);
}

.social-icons {
    position: absolute;
    bottom: 40px;
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.2rem;
}

/* Banner Hero */
.banner-hero {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 200px 0 150px;
    text-align: left;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.banner-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.typing-text {
    position: relative;
}

.typing-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

/* Mini Banner */
.mini-banner {
    background-color: var(--black);
    padding: 15px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    transition: all 0.3s ease;
}

.mini-banner .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--secondary-color);
}

.mini-banner strong {
    font-weight: 800;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
}

/* Sections comuns */
section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
}

h2 {
    font-size: 3rem;
    margin-bottom: 50px;
}

h2 span {
    color: var(--primary-color);
}

/* Seção Experts */
.experts-section {
    padding: 80px 0;
}

/* Seção Serviços */
.services-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.service-item {
    margin-bottom: 30px;
    text-align: left;
}

.service-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--black);
    font-weight: 800;
}

.discover-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 30px;
}

.discover-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.discover-link:hover i {
    transform: translateX(5px);
}

/* Seção Diferenças */
.differences-section {
    padding: 80px 0;
}

.text-content {
    background-color: var(--white);
    border: 2px solid var(--black);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.benefit-item {
    flex: 1 1 calc(50% - 20px);
    box-sizing: border-box;
    margin-bottom: 0;
}

.benefit-item {
    background-color: #f8f8f8;
    border-radius: 4rem;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.benefit-item img {
    max-width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.btn-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    margin-top: 20px;
}

/* Seção Talentos */
.talent-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.benefits-row {
    margin-top: 50px;
}

.benefit-card {
    margin-bottom: 30px;
}

.card-content {
    padding: 30px;
    height: 100%;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-top {
    margin-bottom: 40px;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo i {
    font-size: 2rem;
    color: var(--white);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-right: 20px;
    font-weight: 800;
}

.copyright {
    font-size: 0.9rem;
    font-weight: 800;
}

[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0, 0) !important;
}

[data-animate].animate-out {
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Direções específicas */
[data-animate="left"] {
    transform: translateX(-50px);
}

[data-animate="right"] {
    transform: translateX(50px);
}

[data-animate="up"] {
    transform: translateY(50px);
}

[data-animate="down"] {
    transform: translateY(-50px);
}

/* Typing Effect */
.typing-text {
    position: relative;
    display: inline-block;
}

.typing-text.typing-active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mini-banner sticky effect */
.mini-banner {
    transition: all 0.3s ease;
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-overlay {
        width: 50%;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .col-md-6.col-lg-3 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .nav-overlay {
        width: 80%;
    }
    
    .service-item img {
        max-width: 60px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .service-item a {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .banner-hero {
        padding: 150px 0 100px;
        min-height: 60vh;
    }
    
    .banner-hero h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mini-banner {
        top: 70px;
    }
    
    .benefit-item {
        flex: 1 1 100%;
    }
    
    .benefit-item {
        border-radius: 3rem;
        padding: 20px;
    }
    
    .services-section .row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .service-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
        margin-bottom: 0;
    }
    
    .service-item h3 {
        margin-top: 0;
    }
    
    .talent-section .btn-dark {
        display: block;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        width: fit-content;
    }
    
    .footer-top {
        text-align: center;
    }
    
    .footer-top .col-md-6:first-child {
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .footer-top .col-md-6:last-child {
        text-align: center;
    }
    
    .footer-top .col-md-6:last-child p {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        margin: 1.5rem 0;
    }
    
    .footer-links a {
        margin: 0.5rem 0;
    }
    
    .copyright {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .nav-overlay {
        width: 100%;
    }
    
    .banner-hero h1 {
        font-size: 2rem;
    }
    
    .mini-banner .content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-top {
        display: flex;
        flex-direction: column;
    }
    
    .footer-top .col-md-6 {
        width: 100%;
    }
    
    .footer-top .col-md-6:first-child {
        order: 1;
    }
    
    .footer-top .col-md-6:last-child {
        order: 2;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links a {
        margin: 0.5rem 0;
    }
}

/* Additional Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from { 
        opacity: 0;
        transform: translateX(-30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Smooth transitions for interactive elements */
a, button, .btn-white, .btn-dark {
    transition: all 0.3s ease;
}

/* Button hover effects */
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Estilos para o mini-banner corrigido */
.mini-banner {
    position: sticky;
    top: 80px; /* Ajuste conforme a altura do header */
    z-index: 999;
    transition: all 0.3s ease;
}

.mini-banner.sticky-active {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Garante que o conteúdo não fique escondido atrás do mini-banner fixo */
section:first-of-type {
    padding-top: 60px;
}

/* Seção Diferenciais */
.diferenciais-section {
    padding: 80px 0;
    background-color: #fff;
}

.diferenciais-grid {
    margin: 0 -15px;
}

.diferencial-card {
    transition: all 0.3s ease;
    padding: 30px 20px !important;
    border-radius: 10px;
    border: 1px solid #e0e0e0ad; /* Borda cinza clara */
    background-color: #fff; /* Fundo branco */
   
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.diferencial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #000;
}

.diferencial-card p {
    color: #666;
    line-height: 1.6;
}

/* Efeitos de hover */
.diferencial-card {
    transition: all 0.3s ease;
    padding: 30px 20px;
    border-radius: 10px;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #000; /* Borda preta no hover (opcional) */
}


/* Responsividade */
@media (max-width: 992px) {
    .diferencial-card {
        padding: 25px 15px;
    }
}

@media (max-width: 768px) {
    .diferencial-card {
        margin-bottom: 20px;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .diferencial-card h3 {
        font-size: 1.3rem;
    }
}
       /* Seção Agências - Layout Ampliado */
       .agencies-section {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        display: flex;
        width: 100%;
        
        margin: 0 auto;
    }
    
    .agencies-content {
        flex: 0 0 50%; /* Ocupa exatamente 50% */
        background-color: #f8f8f8;
        padding: 110px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }
    
    .agencies-icon {
        font-size: 3.5rem;
        color: #333;
        margin-bottom: 25px;
    }
    
    .agencies-content h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #333;
        line-height: 1.3;
    }
    
    .agencies-content p {
        font-size: 1.2rem;
        color: #666;
        max-width: 400px;
    }
    
    /* Carrossel - Lado Direito */
    .agencies-carousel {
        flex: 0 0 50%; /* Ocupa exatamente 50% */
        background-color: #fff;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px; /* Altura mínima para melhor visualização */
    }
    
    .carousel-container {
        display: flex;
        transition: transform 0.6s ease-in-out;
        width: 100%;
        height: 100%;
    }
    
    .carousel-slide {
        min-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }
    
    .carousel-slide img {
        max-width: 80%;
        max-height: 180px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.9;
        transition: all 0.4s ease;
    }
    
    .carousel-slide img:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.03);
    }
    
    /* Navegação Automática (sem controles visíveis) */
    .carousel-nav {
        display: none; /* Removemos os dots pois será totalmente automático */
    }
    
    /* Responsividade */
    @media (max-width: 992px) {
        .agencies-section {
            flex-direction: column;
        }
        
        .agencies-content,
        .agencies-carousel {
            flex: 0 0 100%;
            width: 100%;
        }
        
        .agencies-content {
            padding: 40px 30px;
            align-items: center;
            text-align: center;
        }
        
        .agencies-content p {
            max-width: 100%;
        }
        
        .carousel-slide img {
            max-height: 140px;
        }
    }
    
    @media (max-width: 576px) {
        .agencies-content {
            padding: 30px 20px;
        }
        
        .agencies-content h2 {
            font-size: 1.6rem;
        }
        
        .agencies-content p {
            font-size: 1rem;
        }
        
        .carousel-slide img {
            max-height: 100px;
        }
    }


      /* Container principal */
      .team-section {
        background-color: white;
        width: 100%;
        padding: 60px 0;
        display: flex;
        justify-content: center;
    }

    /* Container centralizado */
    .team-container {
        width: 100%;
        max-width: 1120px;
        margin: 0 auto;
        position: relative;
    }
         /* Slide do carrossel */
.team-slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    }
        /* Parte da imagem (20%) */
        .team-image {
            width: 20%;
            display: flex;
            justify-content: center;
        }
    
        .team-image img {
            width: 250px;
            height: 250px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #f0f0f0;
        }
    
        /* Parte do conteúdo (80%) */
        .team-content {
            width: 80%;
            padding-left: 40px;
        }
    
        /* Aspa cinza */
        .quote-icon {
            color: #cccccc;
            font-size: 56px;
            line-height: 0;
            margin-bottom: 20px;
        }
    
        /* Frase destacada */
        .highlight-quote {
            color: #1f42ac; /* Cor da paleta - ajuste conforme necessário */
            font-size: 38px;
            font-weight: 600;
            margin-bottom: 15px;
        }
    
        /* Depoimento completo */
        .full-quote {
            color: #333333;
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
    
        /* Informações da pessoa */
        .person-info {
            display: flex;
            align-items: center;
            color: #c03160;
            font-size: 17px;
        }
       
    
        .dot-separator {
            width: 5px;
            height: 5px;
            background-color: #223d88;
            border-radius: 50%;
            margin: 0 10px;
        }
    
        /* Navegação (dots) */
        .team-dots {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }
    
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #dddddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
    
        .dot.active {
            background-color: #2a5bd7; /* Cor da paleta - ajuste conforme necessário */
        }
    
        /* Responsividade */
        @media (max-width: 768px) {
            .team-slide {
                flex-direction: column;
                text-align: center;
            }
    
            .team-image, .team-content {
                width: 100%;
                padding-left: 0;
            }
    
            .team-image {
                margin-bottom: 30px;
            }
    
            .person-info {
                justify-content: center;
            }
        }