/* ═══════════════════════════════════════════════════════════════
   VÉRTICE SOLUÇÕES — Custom Stylesheet
   Fonte: Plus Jakarta Sans | Framework: Bootstrap 5.3
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. VARIÁVEIS CSS ──────────────────────────────────────────── */
:root {
    --primary:        #2563eb;
    --primary-dark:   #1d4ed8;
    --primary-darker: #1e3a8a;
    --primary-light:  #3b82f6;
    --accent:         #f59e0b;
    --accent-dark:    #d97706;
    --dark:           #0f172a;
    --dark-2:         #1e293b;
    --dark-3:         #334155;
    --gray:           #64748b;
    --gray-2:         #94a3b8;
    --light:          #f8fafc;
    --light-2:        #f1f5f9;
    --border:         #e2e8f0;
    --white:          #ffffff;

    --gradient:        linear-gradient(135deg, #1e3a8a 0%, #2563eb 55%, #3b82f6 100%);
    --gradient-dark:   linear-gradient(135deg, #060c1a 0%, #0f172a 50%, #1e293b 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    --shadow-sm:  0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
    --shadow:     0 4px 6px -1px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
    --shadow-md:  0 10px 15px -3px rgba(0,0,0,.10), 0 4px 6px rgba(0,0,0,.05);
    --shadow-lg:  0 20px 25px -5px rgba(0,0,0,.10), 0 10px 10px rgba(0,0,0,.04);
    --shadow-xl:  0 25px 50px -12px rgba(0,0,0,.25);
    --shadow-blue: 0 8px 32px rgba(37,99,235,.20);

    --transition: all .3s ease;
    --transition-slow: all .5s ease;

    --radius-sm: 8px;
    --radius:    12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --section-py: 6rem;
}

/* ── 2. RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-3);
    background: var(--white);
    overflow-x: hidden;
}

/* ── 3. TIPOGRAFIA ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--primary-dark); }

img { max-width: 100%; }

/* ── 4. UTILITÁRIOS ────────────────────────────────────────────── */
.text-accent  { color: var(--accent) !important; }
.text-primary-custom { color: var(--primary) !important; }
.bg-dark-custom { background: var(--gradient-dark) !important; }

.section-py { padding: var(--section-py) 0; }
.section-py-sm { padding: 4rem 0; }

/* Cabeçalho de seção padrão */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(245,158,11,.12);
    padding: .35rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .9rem;
}
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.65rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: .9rem;
    line-height: 1.15;
}
.section-title span { color: var(--primary); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.75;
}
.section-header.left-align {
    text-align: left;
}
.section-header.left-align .section-subtitle {
    margin: 0;
}

/* ── 5. BOTÕES ─────────────────────────────────────────────────── */
.btn-primary-custom {
    background: var(--gradient);
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
    position: relative;
    overflow: hidden;
    z-index: 0;
    text-decoration: none;
    cursor: pointer;
}
.btn-primary-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.1);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}
.btn-primary-custom:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(37,99,235,.35); }
.btn-primary-custom:hover::after { opacity: 1; }

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    border: 2px solid rgba(255,255,255,.4);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.btn-outline-custom:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    color: var(--white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--dark);
    padding: .8rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    border: 2px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.btn-outline-dark:hover { border-color: var(--primary); color: var(--primary); }

.btn-nav-cta {
    background: var(--gradient);
    color: var(--white) !important;
    padding: .6rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .9rem;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,99,235,.4); color: var(--white) !important; }

/* ── 6. NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1050;
    padding: 1.25rem 0;
    transition: var(--transition-slow);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: .75rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,.08);
}
.navbar-brand {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: var(--transition);
}
.navbar.scrolled .navbar-brand { color: var(--dark); }
.navbar-brand span { color: var(--accent); }
.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}
.navbar .nav-link {
    color: rgba(255,255,255,.85);
    font-weight: 600;
    font-size: .92rem;
    padding: .5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}
.navbar.scrolled .nav-link { color: var(--dark-3); }
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1rem; right: 1rem;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after { transform: scaleX(1); }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent); }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--primary); }
.navbar.scrolled .nav-link::after { background: var(--primary); }

/* Toggler customizado */
.navbar-toggler { border: none; padding: .4rem; background: transparent !important; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 4px 0;
    border-radius: 2px;
    transition: var(--transition);
}
.navbar.scrolled .toggler-icon { background: var(--dark); }

/* ── 7. HERO ────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

/* Grade de pontos de fundo */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

/* Blobs animados */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}
.hero-blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(37,99,235,.35) 0%, transparent 70%);
    top: -150px; right: -150px;
    animation: blobFloat 12s ease-in-out infinite;
}
.hero-blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    animation: blobFloat 16s ease-in-out infinite reverse;
}
.hero-blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,.25) 0%, transparent 70%);
    top: 40%; left: 30%;
    animation: blobFloat 10s ease-in-out infinite 2s;
}

/* Formas geométricas */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.06);
    pointer-events: none;
    z-index: 0;
}
.hero-shape-1 { width: 500px; height: 500px; top: 10%; right: -100px; animation: rotateSlow 30s linear infinite; }
.hero-shape-2 { width: 300px; height: 300px; bottom: 15%; left: 5%; animation: rotateSlow 20s linear infinite reverse; }

.hero-content { position: relative; z-index: 1; padding: 8rem 0 5rem; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.25);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.5rem;
    animation: fadeInDown .7s ease forwards;
}
.hero-badge i { font-size: .7rem; }

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp .7s ease .15s both;
}
.hero-title .highlight {
    background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.7);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp .7s ease .3s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp .7s ease .45s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    animation: fadeInUp .7s ease .6s both;
}
.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}
.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.hero-stat-number span { color: var(--accent); }
.hero-stat-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    text-transform: uppercase;
    letter-spacing: .05em;
}
.hero-stat-divider {
    width: 1px;
    background: rgba(255,255,255,.12);
    align-self: stretch;
}

/* Lado direito do hero (visual card) */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInRight .8s ease .3s both;
}
.hero-card-main {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 32px 64px rgba(0,0,0,.3);
}
.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(245,158,11,.2);
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
    padding: .35rem .9rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
}
.hero-card-rating {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-bottom: .5rem;
}
.hero-card-rating i { color: var(--accent); font-size: .85rem; }
.hero-card-metric {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .25rem;
}
.hero-card-metric small { font-size: 1rem; color: rgba(255,255,255,.5); }
.hero-card-desc { color: rgba(255,255,255,.6); font-size: .9rem; }
.hero-services-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.hero-service-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    border: 1px solid rgba(255,255,255,.06);
    transition: var(--transition);
}
.hero-service-item:hover { background: rgba(255,255,255,.08); }
.hero-service-icon {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: .9rem;
    flex-shrink: 0;
}
.hero-service-text { font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    animation: fadeInUp 1s ease 1s both;
    z-index: 1;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}
.scroll-indicator .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ── 8. QUICK STATS BAR ─────────────────────────────────────────── */
.stats-bar {
    background: var(--dark-2);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.stat-bar-item {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}
.stat-bar-item + .stat-bar-item::before {
    content: '';
    position: absolute;
    left: 0; top: 10%; bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,.08);
}
.stat-bar-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .3rem;
}
.stat-bar-number span { color: var(--accent); }
.stat-bar-label { font-size: .82rem; color: var(--gray-2); text-transform: uppercase; letter-spacing: .06em; }

/* ── 9. CARDS DE SERVIÇO ────────────────────────────────────────── */
.services-grid { padding: var(--section-py) 0; background: var(--light); }

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: transparent;
}
.service-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius);
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform .4s cubic-bezier(.175,.885,.32,1.275);
    box-shadow: var(--shadow-blue);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-6deg); }
.service-icon i { font-size: 1.6rem; color: var(--white); }
.service-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.service-card p { font-size: .92rem; color: var(--gray); line-height: 1.7; margin-bottom: 1.25rem; flex-grow: 1; }
.service-link {
    font-size: .88rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: var(--transition);
}
.service-link:hover { color: var(--primary-dark); gap: .6rem; }
.service-card-inner { display: flex; flex-direction: column; height: 100%; }

/* ── 10. SEÇÃO SOBRE (preview home) ────────────────────────────── */
.about-preview { padding: var(--section-py) 0; }

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
}
.about-img-main {
    width: 100%;
    border-radius: var(--radius-xl);
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--shadow-xl);
}
.about-badge-float {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gradient);
    color: white;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.75rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    min-width: 140px;
}
.about-badge-float .big-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.about-badge-float .label { font-size: .78rem; opacity: .85; }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .8rem; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: var(--dark-3);
}
.check-list li i { color: var(--primary); font-size: 1rem; margin-top: .2rem; flex-shrink: 0; }

/* ── 11. DEPOIMENTOS ────────────────────────────────────────────── */
.testimonials-section {
    padding: var(--section-py) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}
.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 32px 32px;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,.55); }
.testimonials-section .section-badge { background: rgba(245,158,11,.15); }

.testimonial-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    height: 100%;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}
.testimonial-card:hover { background: rgba(255,255,255,.08); }
.testimonial-quote { font-size: 2rem; color: var(--accent); opacity: .8; margin-bottom: 1rem; line-height: 1; }
.testimonial-stars { display: flex; gap: .2rem; margin-bottom: 1rem; }
.testimonial-stars i { color: var(--accent); font-size: .9rem; }
.testimonial-text { font-size: .97rem; color: rgba(255,255,255,.75); line-height: 1.8; margin-bottom: 1.75rem; }
.testimonial-author { display: flex; align-items: center; gap: .9rem; }
.testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,.15);
    flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: .95rem; margin-bottom: .1rem; }
.testimonial-role { font-size: .8rem; color: rgba(255,255,255,.45); }

/* Swiper customizado */
.swiper-pagination-bullet { background: rgba(255,255,255,.3) !important; }
.swiper-pagination-bullet-active { background: var(--accent) !important; width: 24px !important; border-radius: 4px !important; }
.swiper-button-next, .swiper-button-prev {
    width: 44px !important; height: 44px !important;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.12);
    transition: var(--transition);
}
.swiper-button-next:hover, .swiper-button-prev:hover { background: var(--primary); border-color: var(--primary); }
.swiper-button-next::after, .swiper-button-prev::after { font-size: .85rem !important; color: white; font-weight: 900; }

/* ── 12. CTA BANNER ─────────────────────────────────────────────── */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 28px 28px;
}
.cta-section h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); color: white; font-weight: 800; margin-bottom: 1rem; position: relative; }
.cta-section p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 540px; margin: 0 auto 2rem; position: relative; }
.cta-section .btn-white {
    background: white;
    color: var(--primary);
    padding: .9rem 2.25rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    transition: var(--transition);
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}
.cta-section .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,.2); color: var(--primary-dark); }

/* ── 13. PAGE BANNER (páginas internas) ─────────────────────────── */
.page-banner {
    background: var(--gradient-dark);
    padding: 9rem 0 4.5rem;
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.page-banner-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.page-banner-blob-1 { width: 400px; height: 400px; background: rgba(37,99,235,.3); top: -100px; right: -50px; }
.page-banner-blob-2 { width: 300px; height: 300px; background: rgba(245,158,11,.12); bottom: -80px; left: 10%; }
.page-banner h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; color: white; position: relative; margin-bottom: 1rem; }
.page-banner p { color: rgba(255,255,255,.65); font-size: 1.05rem; max-width: 580px; position: relative; }
.breadcrumb { background: transparent; padding: 0; margin-bottom: .75rem; }
.breadcrumb-item a { color: rgba(255,255,255,.5); font-size: .87rem; }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--accent); font-size: .87rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

/* ── 14. EQUIPE ─────────────────────────────────────────────────── */
.team-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
    height: 100%;
}
.team-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-8px); }
.team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.team-card:hover .team-img { transform: scale(1.07); }
.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30,58,138,.85) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1.25rem;
}
.team-card:hover .team-overlay { opacity: 1; }
.team-social { display: flex; gap: .6rem; }
.team-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: .85rem;
    transition: var(--transition);
    text-decoration: none;
}
.team-social a:hover { background: var(--accent); border-color: var(--accent); color: white; }
.team-info { padding: 1.5rem; }
.team-name { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem; }
.team-role { font-size: .85rem; color: var(--gray); }

/* ── 15. TIMELINE ───────────────────────────────────────────────── */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary) 10%, var(--primary-light) 90%, transparent);
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: calc(50% + 2.5rem);
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: calc(50% + 2.5rem); }
.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid white;
    box-shadow: 0 0 0 4px rgba(37,99,235,.2);
    z-index: 1;
}
.timeline-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    border: 1px solid var(--border);
    max-width: 380px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: scale(1.02); }
.timeline-year {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(245,158,11,.1);
    padding: .2rem .7rem;
    border-radius: 50px;
    margin-bottom: .5rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.timeline-content h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; }
.timeline-content p { font-size: .88rem; color: var(--gray); margin: 0; }

/* ── 16. MISSÃO/VISÃO/VALORES ───────────────────────────────────── */
.mvv-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    height: 100%;
    text-align: center;
    transition: var(--transition-slow);
}
.mvv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); border-color: transparent; }
.mvv-icon {
    width: 72px; height: 72px;
    border-radius: var(--radius-lg);
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: white;
}
.mvv-icon.blue { background: var(--gradient); box-shadow: var(--shadow-blue); }
.mvv-icon.amber { background: linear-gradient(135deg, #d97706, #f59e0b); box-shadow: 0 8px 24px rgba(245,158,11,.3); }
.mvv-icon.green { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 8px 24px rgba(16,185,129,.3); }
.mvv-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: .75rem; }
.mvv-card p { font-size: .92rem; color: var(--gray); line-height: 1.75; margin: 0; }

/* ── 17. PROCESSO / STEPS ───────────────────────────────────────── */
.process-step {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
    align-items: flex-start;
}
.process-step:hover { box-shadow: var(--shadow-md); border-color: rgba(37,99,235,.2); }
.process-num {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    flex-shrink: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 3rem;
}
.process-text h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.process-text p { font-size: .9rem; color: var(--gray); margin: 0; line-height: 1.7; }

/* ── 18. FAQ ─────────────────────────────────────────────────────── */
.faq-section { padding: var(--section-py) 0; background: var(--light); }
.accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-lg) !important;
    margin-bottom: .75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    font-weight: 700;
    font-size: .97rem;
    color: var(--dark) !important;
    background: white !important;
    padding: 1.25rem 1.5rem;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--primary) !important; background: rgba(37,99,235,.03) !important; }
.accordion-button::after { filter: none; }
.accordion-button:not(.collapsed)::after { filter: brightness(0) saturate(100%) invert(30%) sepia(89%) saturate(1700%) hue-rotate(210deg); }
.accordion-body { font-size: .93rem; color: var(--gray); line-height: 1.75; padding: 1rem 1.5rem 1.5rem; }

/* ── 19. FORMULÁRIO DE CONTATO ──────────────────────────────────── */
.contact-section { padding: var(--section-py) 0; }
.contact-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    height: 100%;
}
.contact-form-card h3 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.contact-form-card p { color: var(--gray); margin-bottom: 2rem; font-size: .95rem; }

.form-label { font-size: .88rem; font-weight: 600; color: var(--dark); margin-bottom: .4rem; }
.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-size: .93rem;
    color: var(--dark);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
    outline: none;
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-message {
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .92rem;
    font-weight: 600;
}
.form-message.success { background: rgba(16,185,129,.08); color: #059669; border: 1px solid rgba(16,185,129,.2); }
.form-message.error   { background: rgba(239,68,68,.08);  color: #dc2626; border: 1px solid rgba(239,68,68,.2); }

.contact-info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.25rem 2rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition-slow);
}
.contact-info-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.contact-info-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius);
    background: rgba(37,99,235,.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.contact-info-card:hover .contact-info-icon { background: var(--gradient); color: white; }
.contact-info-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; }
.contact-info-card p, .contact-info-card a { font-size: .92rem; color: var(--gray); text-decoration: none; margin: 0; line-height: 1.6; }
.contact-info-card a:hover { color: var(--primary); }

/* ── 20. FOOTER ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); }
.footer-top { padding: 5rem 0 4rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-brand {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}
.footer-brand span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,.45); font-size: .9rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 320px; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.55);
    font-size: .9rem;
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-heading { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.25rem; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { color: rgba(255,255,255,.44); font-size: .9rem; text-decoration: none; transition: var(--transition); display: flex; align-items: center; gap: .4rem; }
.footer-links a::before { content: '→'; font-size: .75rem; opacity: 0; transform: translateX(-8px); transition: var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.85); padding-left: .4rem; }
.footer-links a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; }
.footer-contact-list i { color: var(--accent); font-size: 1rem; margin-top: .2rem; flex-shrink: 0; width: 18px; }
.footer-contact-list span, .footer-contact-list a { color: rgba(255,255,255,.44); font-size: .88rem; line-height: 1.6; text-decoration: none; transition: var(--transition); }
.footer-contact-list a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { padding: 1.5rem 0; }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.28); font-size: .84rem; }

/* ── 21. FLOATING BOTÕES ────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 2rem; right: 2rem;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 4px 24px rgba(37,211,102,.45);
    z-index: 990;
    text-decoration: none;
    transition: var(--transition);
}
.whatsapp-float:hover { background: #1ea855; transform: scale(1.1); color: white; }
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%; height: 100%;
    border-radius: 50%;
    background: #25d366;
    animation: whatsappPulse 2.5s ease-out infinite;
    z-index: -1;
}
.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem; right: 2rem;
    width: 44px; height: 44px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1rem;
    border: none;
    box-shadow: var(--shadow-md);
    z-index: 990;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: var(--transition);
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── 22. KEYFRAMES ──────────────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);  }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0);    }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0);   }
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%       { transform: translate(30px, -40px) scale(1.05); }
    66%       { transform: translate(-20px, 20px) scale(.95); }
}
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes scrollPulse { 0%, 100% { opacity: .3; transform: scaleY(1); } 50% { opacity: .9; transform: scaleY(1.3); } }
@keyframes whatsappPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ── 23. RESPONSIVO ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
    :root { --section-py: 4rem; }
    .navbar-collapse {
        background: rgba(15,23,42,.97);
        backdrop-filter: blur(24px);
        border-radius: var(--radius-lg);
        padding: 1.25rem;
        margin-top: .75rem;
        border: 1px solid rgba(255,255,255,.08);
    }
    .navbar.scrolled .navbar-collapse { background: white; border-color: var(--border); }
    .navbar.scrolled .navbar-collapse .nav-link { color: var(--dark) !important; }
    .navbar.scrolled .navbar-collapse .nav-link.active { color: var(--primary) !important; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-visual { margin-top: 3rem; }
    .timeline::before { left: 1.25rem; }
    .timeline-item, .timeline-item:nth-child(even) {
        justify-content: flex-start;
        padding-left: 3.5rem;
        padding-right: 0;
    }
    .timeline-dot { left: 1.25rem; }
    .about-badge-float { right: 0; bottom: -1rem; }
}

@media (max-width: 767.98px) {
    .hero-stats { gap: 1.25rem; }
    .stat-bar-item + .stat-bar-item::before { display: none; }
    .contact-form-card { padding: 2rem 1.5rem; }
    .cta-section h2 { font-size: 1.75rem; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero-actions .btn-primary-custom, .hero-actions .btn-outline-custom { width: 100%; justify-content: center; }
}

@media (max-width: 575.98px) {
    .hero-stat-divider { display: none; }
    .hero-stats { flex-direction: row; flex-wrap: wrap; }
    .footer-top { padding: 3rem 0 2.5rem; }
    .whatsapp-float, .scroll-top-btn { bottom: 1.25rem; right: 1.25rem; }
    .scroll-top-btn { bottom: 4.5rem; }
}
