/* ============================================
   1. GLOBAL - IMPORTS & VARIÁVEIS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    /* Cores principais */
    --vermelho: #F21E26;
    --azul: #084F98;
    
    /* Cores neutras */
    --branco: #ffffff;
    --texto-escuro: #0c1830;
    --texto-cinza: #4b5563;
    --cinza-claro: #f8fafc;
    --cinza-borda: #e5e7eb;
    
    /* Sombras padrão */
    --shadow-sm: 0 10px 22px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 24px 55px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 25px 60px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 70px rgba(15, 23, 42, 0.15);
    
    /* Transições padrão */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.25s ease;
    --transition-slow: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



/* ============================================
   2. COMPONENTES REUTILIZÁVEIS
   ============================================ */

/* --- BOTÕES --- */
.btn-base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.btn-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--vermelho), #c90010);
    color: var(--branco);
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.28);
}

.btn-primary:hover {
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(227, 6, 19, 0.38);
}

.btn-secondary {
    padding: 14px 26px;
    background: var(--branco);
    color: var(--azul);
    border: 2px solid var(--azul);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: var(--azul);
    color: var(--branco);
    transform: translateY(-3px);
}

.btn-outline {
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef4ff;
    color: var(--azul);
    font-size: 0.72rem;
    font-weight: 800;
    transition: var(--transition-base);
}

.btn-outline:hover {
    background: var(--azul);
    color: var(--branco);
}

/* --- CARDS --- */
.card-base {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 22px;
    padding: 30px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.card-base:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--vermelho);
}

/* --- TAGS E BADGES --- */
.tag {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.10);
    color: #e30613;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* --- SEÇÕES PADRÃO --- */
.section-base {
    padding: 90px 0;
    overflow: hidden;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading h2 {
    color: var(--texto-escuro);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 850;
    margin-bottom: 14px;
}

.section-heading p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* --- ANIMAÇÕES DE REVEAL --- */
.blur-reveal {
    opacity: 0;
    transform: translateY(45px) scale(0.98);
    filter: blur(12px);
    transition: opacity 0.85s ease, transform 0.85s ease, filter 0.85s ease;
    will-change: opacity, transform, filter;
}

.blur-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.blur-delay-1 { transition-delay: 0.08s; }
.blur-delay-2 { transition-delay: 0.16s; }
.blur-delay-3 { transition-delay: 0.24s; }
.blur-delay-4 { transition-delay: 0.32s; }



/* ============================================
   3. HEADER
   ============================================ */

   .portal-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    color: var(--azul) !important;
    padding: 8px 20px !important;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.70rem !important;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.portal-btn i {
    font-size: 0.95rem;
}

.portal-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--azul);
    color: var(--branco) !important;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--vermelho);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

/* --- TOPO --- */
.header-top {
    padding-top: 10px;
    background: var(--vermelho);
    margin-bottom: 0 !important;
}

.header-top-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.navbar-brand img {
    width: 200px;
    max-width: 100%;
}

.header-slogan {
    color: var(--branco);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
}

.portal-btn {
    border: 2px solid var(--azul);
    color: var(--branco);
    padding: 9px 24px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-base);
}

.portal-btn:hover {
    background: var(--azul);
    color: var(--branco);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 9px;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--azul);
    color: var(--branco);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-3px);
}

/* --- MENU PRINCIPAL --- */
.site-header .navbar {
    padding: 0;
    margin-top: -28px;
    background: transparent;
    transform: translateY(28px);
}

.site-header .navbar .container {
    background: var(--azul);
    border-radius: 22px;
    padding: 18px 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.navbar-nav {
    width: 100%;
    gap: 10px;
    justify-content: center;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
    font-weight: 800;
    padding: 8px 16px !important;
    border-radius: 999px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--azul) !important;
    background: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.highlight-link {
    background: rgba(255, 255, 255, 0.14);
    color: var(--branco) !important;
}

.club-link {
    background: var(--vermelho);
    color: var(--branco) !important;
    padding-inline: 28px !important;
}

.club-link:hover {
    background: var(--branco);
    color: var(--vermelho) !important;
}

/* --- DROPDOWN --- */
.dropdown-menu {
    margin-top: 14px;
    border: none;
    border-radius: 18px;
    padding: 10px;
    background: var(--branco);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.dropdown-item {
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 700;
    color: var(--azul);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(227, 6, 19, 0.08);
    color: var(--vermelho);
}

/* --- BOTÃO MOBILE --- */
.navbar-toggler {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: var(--azul);
    padding: 9px;
}

.navbar-toggler span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--branco);
    transition: var(--transition-base);
}

.navbar-toggler.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.is-open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- SCROLL --- */
.site-header.header-scrolled .header-top {
    padding: 12px 0 32px;
}

.site-header.header-scrolled {
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.26);
}

/* --- RESPONSIVO --- */
@media (max-width: 1199px) {
    .nav-link {
        font-size: 0.86rem;
        padding: 10px 11px !important;
    }
}

@media (max-width: 991px) {
    .header-top {
        padding: 16px 0;
    }

    .header-top-content {
        grid-template-columns: 1fr auto;
    }

    .header-slogan,
    .header-actions {
        display: none;
    }

    .navbar-toggler {
        display: block;
    }

    .site-header .navbar {
        margin-top: 0;
    }

    .site-header .navbar .container {
        border-radius: 0 0 22px 22px;
        padding: 0 16px 16px;
    }

    .site-header .navbar-collapse {
        padding-top: 16px;
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 8px;
    }

    .nav-link {
        border-radius: 14px;
        padding: 13px 16px !important;
    }

    .club-link {
        text-align: center;
    }

    .dropdown-menu {
        margin-top: 6px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 165px;
    }
}



/* ============================================
   4. FOOTER
   ============================================ */

.site-footer {
    background: var(--vermelho);
    color: rgba(255, 255, 255, 0.75);
    padding: 30px 0 20px;
    margin-top: 20px;
}

#footer-placeholder {
    background: var(--vermelho);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: space-between;
    margin-bottom: 0;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .footer-logo {
    margin-bottom: 5px;
}

.footer-brand .footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-brand h3 {
    color: var(--branco);
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: var(--branco);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.864);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--azul);
    transform: translateX(3px);
}

.footer-social-section {
    margin-bottom: 15px;
    text-align: center;
}

.footer-social-section h4 {
    color: var(--branco);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--azul);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    margin: 0;
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
    }
    
    .footer-social-section {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}



/* ============================================
   5. HOME
   ============================================ */

.home-main {
    overflow: hidden;
}

/* --- HERO --- */
.home-hero-simple {
    margin-bottom: 60px;
    padding: 90px 0;
    background:
        radial-gradient(circle at top left, rgba(227, 6, 19, 0.12), transparent 35%),
        radial-gradient(circle at bottom right, rgba(27, 117, 187, 0.14), transparent 35%),
        #f8fafc;
    overflow: hidden;
}

.hero-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 50px;
}

.store-grid {
    display:flex;
    align-items: right;
    justify-content: right;
    gap: 50px;
}

.hero-simple-content-map {
    background: #f8fafc;
    width: 40%;
    padding-left: 5% !important;
    
}

.hero-simple-content {
        background: #f8fafc;
        transform: translateY(-30%);
}

.hero-simple-content h1, .hero-simple-content-map h1  {
    color: var(--azul);
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    line-height: 1.05;
    font-weight: 900;
    margin: 18px 0 32px;
}

.hero-simple-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-base);
}

.hero-btn.primary {
    background: var(--vermelho);
    color: var(--branco);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.25);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(227, 6, 19, 0.35);
}

.hero-btn.secondary {
    background: var(--branco);
    color: var(--azul);
    border: 2px solid var(--azul);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.hero-btn.secondary:hover {
    background: var(--azul);
    color: var(--branco);
    transform: translateY(-3px);
}

.hero-simple-image {
    position: relative;
    transform: translate(-15%, -12%);
}

.hero-simple-image::before {
    content: "";
    position: absolute;
    inset: 35px 0 0 35px;
    border-radius: 34px;
    opacity: 0.18;
    z-index: 0;
}

.hero-simple-image img {
    position: relative;
    z-index: 1;
    width: 110%;
    border-radius: 34px;
    filter: drop-shadow(20px 20px 40px rgba(15, 23, 42, 0.336));
    object-fit: cover;
}

/* --- SEÇÕES DE CONTEÚDO --- */
.home-section {
    padding: 90px 0;
    overflow: hidden;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.split-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-image {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
}

.split-image iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    border: none;
    border-radius: 32px;
}

.split-image img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
}

.split-text {
    max-width: 560px;
}

.split-text h1,
.split-text h2 {
    color: var(--texto-escuro);
    font-size: clamp(2rem, 4vw, 50px);
    line-height: 1.05;
    font-weight: 850;
    margin-bottom: 18px;
}

.split-text p {
    color: var(--texto-cinza);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #e30613, #c90010);
    color: var(--branco);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.28);
    transition: var(--transition-base);
}

.primary-btn:hover {
    color: var(--branco);
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(227, 6, 19, 0.38);
}

/* --- SEÇÃO DE APP --- */
.app-section {
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
}

.store-section::after {
    
    content: "";
    position: absolute;
    inset: 0;
    width: 25%;
    transform: translateX(140%);
    z-index: -1;
    background: linear-gradient(90deg, #f8fafc00, #ffffff);
}

.app-image img {
    max-height: 520px;
    object-fit: contain;
    background: transparent;
    padding: 30px;
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 190px;
    padding: 13px 18px;
    border-radius: 18px;
    background: #0c1830;
    color: var(--branco);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: 0 14px 30px rgba(12, 24, 48, 0.22);
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn span {
    display: flex;
    flex-direction: column;
    font-size: 0.72rem;
    line-height: 1.1;
}

.store-btn strong {
    font-size: 1rem;
}

.store-btn:hover {
    color: var(--branco);
    transform: translateY(-3px);
    background: var(--vermelho);
}

/* --- SEÇÃO DE PARCEIROS --- */
.partners-section {
    background: var(--branco);
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.partners-carousel::before,
.partners-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--branco), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--branco), transparent);
}

.partners-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scrollPartners 28s linear infinite;
}

.partners-carousel:hover .partners-track {
    animation-play-state: paused;
}

.partner-logo {
    width: 180px;
    height: 105px;
    flex-shrink: 0;
    border-radius: 24px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transition: var(--transition-base);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
    border-color: var(--vermelho);
}

.partner-logo img {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: var(--transition-base);
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scrollPartners {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .home-hero-simple {
        padding: 70px 0;
    }

    .hero-simple-grid {
        grid-template-columns: 1fr;
    }

    .hero-simple-content {
        text-align: center;
    }

    .hero-simple-actions {
        justify-content: center;
    }

    .split-content,
    .split-content.reverse {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .app-section .split-image {
        order: -1;
    }

    .home-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .split-image iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .hero-simple-content h1 {
        font-size: 2.2rem;
    }

    .hero-btn {
        width: 100%;
    }

    .split-image img {
        border-radius: 24px;
    }

    .split-text h1,
    .split-text h2 {
        font-size: 2rem;
    }

    .store-buttons {
        flex-direction: column;
    }

    .store-btn {
        width: 100%;
    }

    .partner-logo {
        width: 150px;
        height: 90px;
    }
}



/* ============================================
   6. QUEM SOMOS
   ============================================ */

.about-main {
    overflow: hidden;
}

.about-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: -5%; /* espaço extra para o movimento não expor bordas */
    background-image: linear-gradient(280deg,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.606)
    ), url("../assets/3afd38b6-dcb4-4b6b-9d47-42c809b27d2f.jpg");
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    background-repeat: no-repeat;
    will-change: transform; /* otimização de GPU */
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 650px;
}

.about-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    margin: 18px 0;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- SEÇÕES --- */
.about-section {
    padding: 90px 0;
}

.about-section.light {
    background: var(--cinza-claro);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 18px;
    color: var(--azul);
}

.about-text p {
    color: var(--texto-cinza);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

/* --- MISSÃO / VISÃO --- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    padding: 32px;
    border-radius: 22px;
    border: 1px solid var(--cinza-borda);
    background: var(--branco);
    transition: var(--transition-base);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--vermelho);
}

.mv-card h3 {
    color: var(--vermelho);
    font-weight: 900;
    margin-bottom: 12px;
}

/* --- VALORES --- */
.values-section {
    background: linear-gradient(180deg, var(--branco), var(--cinza-claro));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.value-card {
    position: relative;
    padding: 30px 26px;
    border-radius: 24px;
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    overflow: hidden;
    transition: var(--transition-slow);
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227,6,19,0.08), rgba(27,117,187,0.08));
    opacity: 0;
    transition: 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(27,117,187,0.12);
    color: var(--azul);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 16px;
    transition: 0.3s ease;
}

.value-card h4 {
    color: var(--azul);
    font-weight: 900;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.6;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.value-card:hover .value-icon {
    background: var(--vermelho);
    color: var(--branco);
    transform: scale(1.08);
}

.value-card.highlight {
    background: linear-gradient(135deg, var(--azul), #084f98);
    color: var(--branco);
    border: none;
}

.value-card.highlight h4,
.value-card.highlight p {
    color: var(--branco);
}

.value-card.highlight .value-icon {
    background: rgba(255,255,255,0.2);
    color: var(--branco);
}

.value-card-wide {
    margin-top: 26px;
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.value-wide-content {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 520px;
}

.value-wide-content .value-icon {
    flex-shrink: 0;
}

.value-wide-visual {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    max-width: 520px;
}

.value-wide-visual span {
    padding: 14px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--branco);
    font-weight: 800;
    backdrop-filter: blur(8px);
    transition: var(--transition-base);
}

.value-wide-visual span:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-3px);
}

/* --- CTA --- */
.about-cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--azul), #084f98);
    border-radius: 28px;
    padding: 40px 50px;
    color: var(--branco);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-text h2 {
    font-weight: 900;
    margin-bottom: 10px;
}

.cta-text p {
    opacity: 0.9;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-card-wide {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-wide-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .value-wide-visual {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        text-align: center;
        justify-content: center;
    }
}



/* ============================================
   7. REDE DE LOJAS
   ============================================ */

.stores-main {
    background: var(--cinza-claro);
    overflow: hidden;
}

/* --- HERO --- */
.stores-hero {
    padding: 110px 0 80px;
    background: linear-gradient(135deg, var(--vermelho), #c90010);
    color: var(--branco);
    text-align: center;
}

.stores-hero h1 {
    max-width: 780px;
    margin: 16px auto;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
}

.stores-hero p {
    opacity: 0.9;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

/* --- BUSCA --- */
.stores-search-box {
    max-width: 680px;
    margin: 0 auto;
    background: var(--branco);
    border-radius: 999px;
    padding: 6px 8px 6px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.stores-search-box i {
    color: var(--azul);
    font-size: 1rem;
}

.stores-search-box input {
    width: 90%;
    border: none;
    outline: none;
    padding: 14px 6px;
    font-size: 0.92rem;
    font-weight: 600;
    color: #1f2937;
}

.near-me-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    background: var(--azul);
    color: var(--branco);
    font-weight: 800;
    font-size: 0.78rem;
    cursor: pointer;
    margin-bottom: 5px;
    transition: var(--transition-base);
    white-space: nowrap;
}

.near-me-btn:hover {
    background: var(--branco);
    color: var(--azul);
    transform: translateY(-2px);
}

/* --- LAYOUT --- */
.stores-content {
    padding: 60px 0;
}

.stores-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 28px;
    align-items: start;
}

.stores-info {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
}

.stores-info strong {
    color: var(--azul);
}

/* --- LISTA DE LOJAS --- */
.stores-list {
    display: grid;
    gap: 12px;
}

.store-card {
    background: var(--branco);
    border: 1px solid var(--cinza-borda);
    border-radius: 16px;
    padding: 16px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.store-card:hover {
    transform: translateY(-3px);
    border-color: var(--vermelho);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.store-card h3 {
    color: var(--azul);
    font-size: 0.95rem;
    font-weight: 900;
    margin-bottom: 4px;
}

.store-location {
    color: var(--vermelho);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-distance {
    padding: 3px 7px;
    border-radius: 999px;
    background: rgba(227, 6, 19, 0.08);
    color: var(--vermelho);
    font-size: 0.7rem;
    font-weight: 800;
}

.store-address {
    color: #374151;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 10px;
    cursor: pointer;
}

.store-address:hover {
    color: var(--azul);
    text-decoration: underline;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.store-actions a,
.store-actions button {
    border: none;
    border-radius: 999px;
    padding: 6px 10px;
    background: #eef4ff;
    color: var(--azul);
    font-size: 0.72rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.store-actions a:hover,
.store-actions button:hover {
    background: var(--azul);
    color: var(--branco);
}

/* --- MAPA --- */
.stores-map-area {
    position: sticky;
    top: 140px;
}

.map-card {
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
    background: var(--branco);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.map-wrapper iframe {
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: calc(100% + 70px);
    border: 0;
}

.split-image {
    position: relative;
    max-height: 480px;
}

.image-overlay-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #2c7da0;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.image-overlay-btn:hover {
    background: #1f5e7a;
}

/* --- SEDE --- */
.headquarters-card {
    margin-top: 18px;
    padding: 24px;
    border-radius: 22px;
    background: var(--azul);
    color: var(--branco);
    box-shadow: 0 16px 34px rgba(8, 79, 152, 0.22);
}

.headquarters-card h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.headquarters-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.headquarters-card a {
    color: var(--branco);
    font-weight: 800;
    font-size: 0.85rem;
}

.headquarters-card a:hover {
    text-decoration: underline;
}

.headquarters-card .section-tag {
    background: rgba(255,255,255,0.16);
    color: var(--branco);
}

/* --- PAGINAÇÃO --- */
.stores-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 24px;
}

.page-btn {
    min-width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: var(--branco);
    color: var(--azul);
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    border: 1px solid var(--cinza-borda);
    transition: var(--transition-base);
}

.page-btn:hover,
.page-btn.active {
    background: var(--azul);
    color: var(--branco);
    border-color: var(--azul);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* --- EMPTY STATE --- */
.empty-state {
    background: var(--branco);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    border: 1px dashed #cbd5e1;
}

/* --- REVEAL --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .stores-layout {
        grid-template-columns: 1fr;
    }

    .stores-map-area {
        position: static;
    }

    .map-card {
        height: 320px;
    }
}

@media (max-width: 576px) {
    .stores-hero {
        padding: 80px 0 60px;
    }

    .stores-search-box {
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        padding: 14px;
    }

    .near-me-btn {
        width: 100%;
    }

    .store-card {
        padding: 14px;
    }
}

/* ============================================
   depoimentos
   ============================================ */

    .testimonial-section {
    background: #f8fafc;
}

/* TEXTO DO DEPOIMENTO */
.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #334155;
    margin: 20px 0;
    font-style: italic;
}

/* AUTOR */
.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #0f172a;
}

.testimonial-author span {
    font-size: 14px;
    color: #64748b;
}

/* CARD VISUAL */
.testimonial-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 280px;
}

.testimonial-card img {
    width: 100%;
    border-radius: 12px;
}

/* ============================================
   8. SEJA ASSOCIADO / CONTATO
   ============================================ */

.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cinza-claro), #eef4ff);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--azul);
    margin-bottom: 16px;
}

.contact-content p {
    color: var(--texto-cinza);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- FORMULÁRIO --- */
.contact-form {
    background: var(--branco);
    padding: 40px;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1px solid var(--cinza-borda);
    outline: none;
    font-size: 0.95rem;
    transition: var(--transition-base);
    background: transparent;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 16px;
    color: #9ca3af;
    font-size: 0.9rem;
    transition: 0.25s;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(27,117,187,0.1);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -8px;
    left: 10px;
    background: var(--branco);
    padding: 0 6px;
    font-size: 0.72rem;
    color: var(--azul);
}

.submit-btn {
    padding: 16px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vermelho), #c90010);
    color: var(--branco);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: 0 14px 30px rgba(227, 6, 19, 0.25);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(227, 6, 19, 0.35);
}

.form-feedback {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.form-feedback.success {
    color: #16a34a;
}

.form-feedback.error {
    color: #dc2626;
}

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }
}

/* --- FLUXO DE ASSOCIAÇÃO --- */
.flow-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(227, 6, 19, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(27, 117, 187, 0.10), transparent 35%),
        var(--cinza-claro);
    overflow: hidden;
}

.flow-heading {
    max-width: 820px;
    margin: 0 auto 45px;
    text-align: center;
}

.flow-heading h2 {
    color: var(--azul);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 14px;
}

.flow-heading p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

.flow-center-card {
    max-width: 620px;
    margin: 0 auto 42px;
    padding: 34px;
    border-radius: 28px;
    background: var(--branco);
    text-align: center;
    border: 1px solid var(--cinza-borda);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    position: relative;
}

.flow-center-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--vermelho), var(--azul));
    z-index: -1;
    opacity: 0.18;
}

.flow-center-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--vermelho), var(--azul));
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
}

.flow-center-card h3 {
    color: var(--azul);
    font-size: 1.7rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.flow-center-card p {
    color: #64748b;
    margin: 0;
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.flow-card {
    position: relative;
    min-height: 100%;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: var(--transition-slow);
}

.flow-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.08;
    transition: var(--transition-slow);
}

.flow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.flow-card:hover::before {
    opacity: 0.16;
}

.flow-card-header {
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 24px;
    z-index: 1;
}

.flow-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 18px;
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    transition: 0.3s ease;
}

.flow-card:hover .flow-icon {
    transform: rotate(-6deg) scale(1.08);
}

.flow-card h3 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.flow-card-header p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.flow-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 1;
}

.flow-items span {
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: var(--branco);
    color: #334155;
    border: 1px solid var(--cinza-borda);
    font-size: 0.78rem;
    font-weight: 800;
    transition: var(--transition-base);
}

.flow-items span:hover {
    transform: translateY(-3px);
    color: var(--branco);
}

/* --- CORES DOS PILARES --- */
.flow-orange h3 { color: #f97316; }
.flow-orange::before { background: #f97316; }
.flow-orange .flow-icon,
.flow-orange .flow-items span:hover { background: #f97316; }

.flow-teal h3 { color: #0f9f8f; }
.flow-teal::before { background: #0f9f8f; }
.flow-teal .flow-icon,
.flow-teal .flow-items span:hover { background: #0f9f8f; }

.flow-blue h3 { color: var(--azul); }
.flow-blue::before { background: var(--azul); }
.flow-blue .flow-icon,
.flow-blue .flow-items span:hover { background: var(--azul); }

.flow-pink h3 { color: #e11d48; }
.flow-pink::before { background: #e11d48; }
.flow-pink .flow-icon,
.flow-pink .flow-items span:hover { background: #e11d48; }

/* --- RESPONSIVO --- */
@media (max-width: 991px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }

    .flow-card {
        padding: 26px;
    }
}

@media (max-width: 576px) {
    .flow-section {
        padding: 75px 0;
    }

    .flow-card-header {
        flex-direction: column;
    }

    .flow-center-card {
        padding: 28px 22px;
    }

    .flow-items span {
        font-size: 0.74rem;
    }
}



/* ============================================
   9. PILARES E TIMELINE
   ============================================ */

.sec {
    padding: 72px 0;
    font-family: 'Poppins', sans-serif;
}

/* --- HEADING --- */
.head {
    text-align: center;
    margin-bottom: 56px;
}

.head h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--azul);
    margin-bottom: 12px;
    line-height: 1.3;
}

.head p {
    font-size: 15px;
    color: #64748b;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- CENTER CARD --- */
.center-card {
    max-width: 480px;
    margin: 0 auto 56px;
    padding: 28px 32px;
    border-radius: 16px;
    background: var(--branco);
    border: 0.5px solid #e2e8f0;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    text-align: center;
}

.center-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(227, 6, 19, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.center-icon svg {
    width: 24px;
    height: 24px;
    stroke: #A32D2D;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.center-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 6px;
}

.center-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* --- TIMELINE --- */
.timeline {
    position: relative;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #e2e8f0;
}

/* --- PILAR --- */
.pilar {
    position: relative;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(36px);
    filter: blur(8px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.pilar.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.pilar-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    cursor: pointer;
    user-select: none;
}

/* --- DOT --- */
.dot {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    transition: transform .3s ease;
}

.pilar-row:hover .dot {
    transform: scale(1.12);
}

.dot svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--branco);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.dot-o { background: #f97316; }
.dot-t { background: #0f9f8f; }
.dot-b { background: #185FA5; }
.dot-p { background: #993556; }

/* --- PILAR BODY --- */
.pilar-body {
    flex: 1;
    min-width: 0;
    border-radius: 16px;
    background: var(--branco);
    border: 0.5px solid #e2e8f0;
    overflow: hidden;
    transition: border-color .3s;
}

.pilar.open .pilar-body {
    border-color: #cbd5e1;
}

.pilar-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pilar-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.num {
    font-size: 11px;
    font-weight: 500;
    color: #94a3b8;
    width: 20px;
}

.pilar-label h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 2px;
}

.pilar-label p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* --- COR DOS TÍTULOS POR PILAR --- */
.pilar-o .pilar-label h3 { color: #f97316; }
.pilar-t .pilar-label h3 { color: #0f9f8f; }
.pilar-b .pilar-label h3 { color: #185FA5; }
.pilar-p .pilar-label h3 { color: #993556; }

/* --- CHEVRON --- */
.chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #94a3b8;
    transition: transform .35s ease;
}

.pilar.open .chevron {
    transform: rotate(180deg);
}

/* --- ACORDEÃO --- */
.pilar-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}

.pilar.open .pilar-content {
    max-height: 400px;
}

/* --- PILLS --- */
.pills-wrap {
    padding: 0 24px 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 13px;
    border-radius: 999px;
    background: var(--cinza-claro);
    border: 0.5px solid #e2e8f0;
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s ease, transform .3s ease, background .2s, color .2s, border-color .2s;
}

.pill.show {
    opacity: 1;
    transform: translateY(0);
}

.pill:hover {
    background: rgba(27, 117, 187, 0.08);
    color: #185FA5;
    border-color: rgba(27, 117, 187, 0.25);
}

/* --- BLUR ITEM --- */
.blur-item {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
    transition: opacity .7s ease, transform .7s ease, filter .7s ease;
}

.blur-item.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- RESPONSIVO --- */
@media (max-width: 600px) {
    .timeline {
        padding: 0 12px;
    }

    .timeline::before {
        left: 18px;
    }

    .dot {
        width: 28px;
        height: 28px;
        margin-top: 16px;
    }

    .pilar-header {
        padding: 16px 18px;
    }

    .pills-wrap {
        padding: 0 18px 18px;
    }
}