/* ==========================================================================
   KAIRÓS CONTABILIDADE & BPO FINANCEIRO - SYSTEM DESIGN
   ========================================================================== */

:root {
    /* Identidade Visual - Cores Estritas */
    --clr-royal: #1B3FA0;       /* Cor principal, Navbar, CTAs, headings */
    --clr-navy: #0D1F5C;        /* Cor de apoio escura, fundos escuros */
    --clr-gold: #C9A227;        /* Cor de destaque, acentos, badges */
    --clr-white: #FFFFFF;       /* Base clara */
    --clr-gray: #F4F6FB;        /* Fundo suave, seções alternadas */
    --clr-text-main: #1A1A2E;   /* Texto principal (Quase-preto) */
    --clr-text-sec: #6B7280;    /* Texto secundário (Cinza médio) */
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Espaçamentos e Layout */
    --container-max: 1200px;
    --container-padding: 2rem;
    --section-pad: 5rem 0;

    /* Sombras e Transições */
    --shadow-soft: 0 4px 20px rgba(27, 63, 160, 0.08);
    --shadow-hover: 0 10px 30px rgba(27, 63, 160, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   TIPOGRAFIA BASE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-royal);
    line-height: 1.3;
    font-weight: 700;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--clr-text-sec);
    max-width: 800px;
    margin-bottom: 3rem;
}

.text-white { color: var(--clr-white) !important; }
.text-gold { color: var(--clr-gold) !important; }
.text-royal { color: var(--clr-royal) !important; }
.text-gray { color: #CBD5E1 !important; /* light gray for dark bg */ }

/* ==========================================================================
   LAYOUT & UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-pad);
}

.bg-white { background-color: var(--clr-white); }
.bg-gray { background-color: var(--clr-gray); }
.bg-navy { background: linear-gradient(135deg, #050A15 0%, var(--clr-navy) 100%); }
.bg-dark { background-color: #0A1628; }

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.section-with-image.reverse .image-col {
    order: -1;
}
.section-with-image .image-col {
    display: flex;
    align-items: stretch;
}
.section-with-image .image-col img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1024px) {
    .section-with-image { grid-template-columns: 1fr; gap: 2rem; align-items: start; }
    .section-with-image.reverse .image-col { order: -1; }
    .section-with-image .image-col img { min-height: 280px; height: 280px; }
}

/* Dor section: image follows content height, not full stretch */
.dor__container.section-with-image {
    align-items: center;
}
.dor__container .image-col img {
    height: auto;
    min-height: unset;
    max-height: 420px;
}

/* Relatórios section: show full image without cropping */
.relatorios__container .image-col {
    background: #f4f6fa;
    border-radius: 12px;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}
.relatorios__container .image-col img {
    object-fit: contain;
    height: auto;
    min-height: unset;
    max-height: 460px;
    border-radius: 8px;
}

.section-header {
    text-align: left;
    margin-bottom: 3rem;
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: 4px; /* Mais corporativo, menos arredondado */
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--clr-royal);
    color: var(--clr-white);
}
.btn--primary:hover {
    background-color: var(--clr-gold);
}

.btn--gold {
    background-color: var(--clr-gold);
    color: var(--clr-white);
}
.btn--gold:hover {
    background-color: var(--clr-royal);
}

.btn--outline-light {
    background-color: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}
.btn--outline-light:hover {
    background-color: var(--clr-white);
    color: var(--clr-navy);
}

.btn-text-link {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-text-link .arrow { transition: var(--transition); }
.btn-text-link:hover .arrow { transform: translateX(5px); }

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.badge--gold { background-color: var(--clr-gold); color: var(--clr-white); }
.badge--royal { background-color: var(--clr-royal); color: var(--clr-white); }

.section-badge-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.center-cta { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}
.header.scrolled {
    background-color: var(--clr-white);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo { height: 40px; }
.logo-img { height: 100%; width: auto; transition: opacity 0.3s ease; }
.logo-img--white { display: block; }
.logo-img--colored { display: none; }

.header.scrolled .logo-img--white { display: none; }
.header.scrolled .logo-img--colored { display: block; }

.nav__list { display: flex; gap: 2rem; }
.nav__link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--clr-white);
}
.nav__link:hover, .nav__link.active { color: var(--clr-gold); }

.header.scrolled .nav__link { color: var(--clr-text-main); }
.header.scrolled .nav__link:hover, .header.scrolled .nav__link.active { color: var(--clr-royal); }

.burger-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger-btn span { width: 25px; height: 3px; background-color: var(--clr-white); transition: var(--transition); }
.header.scrolled .burger-btn span { background-color: var(--clr-royal); }

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 300px; height: 100vh;
    background-color: var(--clr-white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex; flex-direction: column; gap: 2rem;
}
.mobile-menu.open { right: 0; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-menu__link { font-size: 1.2rem; font-weight: 500; color: var(--clr-royal); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--clr-navy) 0%, #061030 100%);
    position: relative;
    padding: 7rem 0 4rem;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="40" height="40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 40 L40 0 H20 L0 20 Z" fill="rgba(255,255,255,0.02)"/%3E%3C/svg%3E');
    background-size: 40px 40px;
    z-index: 0;
}
.hero__logo-overlay {
    position: absolute;
    right: -10%;
    top: 10%;
    height: 140%;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}
.logo-watermark {
    height: 100%;
    width: auto;
    object-fit: cover;
}
.hero__container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero__title {
    font-size: 4rem;
    color: var(--clr-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
}
.text-cyan {
    color: #00AEEF;
}
.btn--gradient {
    background: linear-gradient(to right, #001f60, #0087cf);
    color: var(--clr-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.2);
}
.btn--gradient:hover {
    background: linear-gradient(to right, #00164a, #006bb3);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 174, 239, 0.3);
}

.hero__image-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    height: 100%;
}
.hero-img {
    max-width: 130%;
    height: auto;
    display: block;
    object-fit: contain;
    /* Caso a imagem tenha fundo, podemos tentar mascarar ou mesclar dependendo da imagem, mas usaremos a tag normal */
    margin-right: -15%;
    margin-bottom: -6rem; /* Para "vazar" na base do hero */
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

/* ==========================================================================
   SEÇÃO DOR
   ========================================================================== */
.dor__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.dor-card {
    background-color: var(--clr-white);
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--clr-royal);
    transition: var(--transition);
}
.dor-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.dor-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.dor-card__title { margin-bottom: 1rem; font-size: 1.3rem; }
.dor-card__desc { color: var(--clr-text-sec); font-size: 0.95rem; }

.dor__solution-block {
    background-color: var(--clr-gray);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--clr-royal);
}
.solution-list { display: flex; flex-direction: column; gap: 1rem; }
.solution-list li { display: flex; align-items: center; gap: 1rem; font-weight: 500; font-size: 1.1rem; }
.check-gold { color: var(--clr-gold); font-weight: bold; font-size: 1.2rem; }

/* ==========================================================================
   SEÇÃO SOBRE
   ========================================================================== */
.sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.sobre__photo-wrapper { position: relative; }
.sobre-img { width: 100%; height: auto; max-height: 600px; border-radius: 4px; box-shadow: var(--shadow-soft); object-fit: contain; }
.sobre__floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 1.5rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-hover);
}
.sobre__floating-badge strong { color: var(--clr-white); display: block; font-size: 1.1rem;}
.sobre__floating-badge span:not(.badge-icon) { color: var(--clr-gold); font-size: 0.9rem; }
.badge-icon { font-size: 2rem; }

.sobre__text { margin-bottom: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.sobre__missao {
    padding: 1.5rem;
    border: 2px solid var(--clr-gold);
    border-radius: 4px;
    background-color: var(--clr-white);
    margin-bottom: 2rem;
}
.sobre__pilares { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.pilar { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.95rem; }
.pilar-icon { font-size: 1.5rem; }

/* ==========================================================================
   CONTABILIDADE (TABLE GRID)
   ========================================================================== */
.services-table-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.service-table-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--clr-gray);
    border-radius: 4px;
    transition: var(--transition);
}
.service-table-card:hover {
    background-color: var(--clr-navy);
}
.service-table-card:hover h4, .service-table-card:hover p {
    color: var(--clr-white);
}
.st-icon { font-size: 2rem; }
.st-content h4 { margin-bottom: 0.5rem; transition: var(--transition); }
.st-content p { font-size: 0.9rem; color: var(--clr-text-sec); transition: var(--transition); }

/* ==========================================================================
   BPO FINANCEIRO
   ========================================================================== */
.impact-phrase {
    font-size: 2.2rem;
    font-family: var(--font-heading);
    text-align: center;
    margin: 4rem 0;
}
.bpo__value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.vp-col h4 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--clr-white); }
.vp-col p { font-size: 1rem; line-height: 1.6;}

/* ==========================================================================
   SERVIÇOS BPO (8 CARDS)
   ========================================================================== */
.bpo-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.bpo-card {
    background-color: var(--clr-gray);
    padding: 2rem;
    border-radius: 4px;
    border-top: 3px solid var(--clr-gold);
    transition: var(--transition);
}
.bpo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.bpo-icon { margin-bottom: 1.5rem; }
.bpo-card h4 { margin-bottom: 1rem; font-size: 1.2rem; }
.bpo-card p { font-size: 0.9rem; color: var(--clr-text-sec); }

/* ==========================================================================
   PROCESSO DE TRABALHO
   ========================================================================== */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 3rem;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 25px; left: 0; right: 0;
    height: 2px;
    background-color: rgba(27, 63, 160, 0.2);
    z-index: 1;
}
.timeline-step {
    flex: 1;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    text-align: center;
}
.step-marker {
    width: 50px; height: 50px;
    border-radius: 50%;
    background-color: var(--clr-royal);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--clr-gray);
    transition: var(--transition);
}
.timeline-step:hover .step-marker { background-color: var(--clr-gold); }
.timeline-step h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.timeline-step p { font-size: 0.9rem; color: var(--clr-text-sec); }

/* ==========================================================================
   RELATÓRIOS
   ========================================================================== */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.dash-card {
    background-color: var(--clr-white);
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    border-left: 4px solid var(--clr-royal);
    box-shadow: var(--shadow-soft);
}
.dash-icon { font-size: 2rem; margin-bottom: 1rem; }
.dash-card h4 { margin-bottom: 0.5rem; }
.dash-card p { font-size: 0.9rem; color: var(--clr-text-sec); }

/* ==========================================================================
   BENEFÍCIOS (GRID 8)
   ========================================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.benefit-item .check-gold { flex-shrink: 0; }
.benefit-item span.text-white { font-size: 1rem; line-height: 1.5; }

/* ==========================================================================
   DIFERENCIAIS
   ========================================================================== */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}
.diff-block { text-align: left; }
.diff-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.diff-block h4 { font-size: 1.5rem; margin-bottom: 1rem; }

/* ==========================================================================
   CARROSSEL CLIENTES
   ========================================================================== */
.logo-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.logo-carousel::before, .logo-carousel::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.logo-carousel::before { left: 0; background: linear-gradient(to right, var(--clr-gray), transparent); }
.logo-carousel::after { right: 0; background: linear-gradient(to left, var(--clr-gray), transparent); }

.logo-carousel__track {
    display: flex;
    width: calc(300px * 18);
    animation: scrollLogos 45s linear infinite;
}
.logo-slide {
    width: 300px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.client-logo {
    max-height: 130px;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}
.client-logo:hover {
    transform: scale(1.08);
}

@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-300px * 9)); } }

/* ==========================================================================
   DEPOIMENTOS (SLIDER)
   ========================================================================== */
.testimonial-slider-wrapper {
    position: relative;
    margin-top: 3rem;
}
.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial-card {
    min-width: calc(33.333% - 20px);
    margin-right: 30px;
    background-color: var(--clr-white);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border-top: 3px solid var(--clr-royal);
    position: relative;
}
.tc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.tc-avatar { width: 50px; height: 50px; border-radius: 50%; color: var(--clr-white); display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem; }
.tc-info h4 { margin-bottom: 0.2rem; font-size: 1.1rem;}
.tc-meta { font-size: 0.8rem; color: var(--clr-text-sec); }
.tc-stars { margin-bottom: 1rem; font-size: 0.9rem;}
.tc-text { font-size: 0.95rem; font-style: italic; }
.tc-google { position: absolute; bottom: 2rem; right: 2rem; opacity: 0.7;}

.slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 40px; height: 40px; border-radius: 50%;
    background-color: var(--clr-white); border: 1px solid #E2E8F0;
    color: var(--clr-royal); font-size: 1.5rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft); z-index: 10; transition: var(--transition);
}
.slider-btn:hover { background-color: var(--clr-royal); color: var(--clr-white); }
.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 10px; height: 10px; border-radius: 50%; background-color: #CBD5E1; cursor: pointer; transition: var(--transition);}
.dot.active { background-color: var(--clr-royal); width: 25px; border-radius: 10px;}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.text-center { text-align: center; }
.accordion { margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; max-width: 800px; width: 100%; }
.accordion-item { background-color: var(--clr-white); border-radius: 4px; border: 1px solid #E2E8F0; overflow: hidden; }
.accordion-trigger {
    width: 100%; padding: 1.5rem; text-align: left; background: none; border: none;
    font-size: 1.1rem; font-weight: 600; font-family: var(--font-body); color: var(--clr-royal);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    transition: var(--transition);
}
.accordion-trigger:hover { background-color: #F8FAFC; }
.accordion-icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; }
.accordion-trigger[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); color: var(--clr-gold); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }
.accordion-inner { padding: 0 1.5rem 1.5rem; color: var(--clr-text-sec); line-height: 1.6; }

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final { position: relative; text-align: center; padding: 8rem 0; overflow: hidden;}
.cta-final__overlay { position: absolute; inset: 0; display: flex; justify-content: center; opacity: 0.3; }
.cta-final__container { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.cta-final__title { font-size: 3rem; margin-bottom: 1.5rem; }
.cta-final__desc { font-size: 1.2rem; color: #CBD5E1; margin-bottom: 3rem; }
.cta-final__actions { display: flex; justify-content: center; gap: 1rem; }

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.footer { padding: 4rem 0 2rem; color: var(--clr-white); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-logo { height: 40px; margin-bottom: 1.5rem; }
.footer-desc { color: #CBD5E1; margin-bottom: 1rem; font-size: 0.95rem; }
.footer-social a { color: var(--clr-gold); font-weight: bold; }
.footer-title { color: var(--clr-gold); margin-bottom: 1.5rem; font-size: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a { color: #CBD5E1; transition: var(--transition); }
.footer-links a:hover { color: var(--clr-gold); padding-left: 5px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; color: #CBD5E1; }
.footer-contact-list li { display: flex; gap: 0.5rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; text-align: center; color: #64748B; font-size: 0.9rem; }

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* Verde Oficial do Zap permitido */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   ANIMATIONS / SCROLL REVEAL
   ========================================================================== */
.reveal-item { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-item.revealed { opacity: 1; transform: translateY(0); }
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE (MOBILE FIRST -> DESKTOP TWEAKS ALREADY ABOVE, NOW MOBILE FIXES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero__title { font-size: 2.8rem; }
    .bpo-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { flex-direction: column; gap: 2rem; margin-top: 2rem; }
    .timeline::before { left: 25px; top: 0; width: 2px; height: 100%; }
    .timeline-step { display: flex; text-align: left; gap: 1.5rem; align-items: flex-start; padding: 0;}
    .step-marker { margin: 0; flex-shrink: 0; }
    .testimonial-card { min-width: calc(50% - 15px); margin-right: 30px; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 3rem;}
}

@media (max-width: 768px) {
    .nav__list, .header__cta { display: none; }
    .burger-btn { display: flex; }
    .hero__container { grid-template-columns: 1fr; }
    .hero__image-panel { display: none; }
    .hero__title { font-size: 2.2rem; }
    .dor__grid, .sobre__grid, .services-table-grid, .diferenciais-grid, .dashboard-grid { grid-template-columns: 1fr; }
    .bpo__value-props { grid-template-columns: 1fr; gap: 2rem;}
    .impact-phrase { font-size: 1.5rem; }
    .bpo-cards-grid { gap: 1rem; }
    .bpo-card { padding: 1.5rem 1rem; }
    .testimonial-card { min-width: 100%; margin-right: 20px; }
    .slider-btn { display: none; } /* Hide arrows on mobile, use drag/dots */
    .footer__grid { grid-template-columns: 1fr; }
    .cta-final__title { font-size: 2rem; }
    .cta-final__actions { flex-direction: column; }
    .sobre__floating-badge { position: relative; bottom: 0; right: 0; transform: translateY(-20px); width: 90%; margin: 0 auto;}
}
