:root {
    --primary-blue: #00BFFF;
    --primary-dark: #009ACD;
    --cta-orange: #FF8C00;
    --cta-hover: #FF7000;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F0F8FF;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
    --font-main: 'Inter', sans-serif;
}

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: 60px;
    /* Space for fixed timer */
}

/* --- Top Sticky Timer (Premium Blue Integration) --- */
.top-timer-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 16px;
    /* Fundo Azul Premium com leve transparência e Blur */
    background: linear-gradient(90deg, rgba(0, 154, 205, 0.98), rgba(0, 191, 255, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 154, 205, 0.3);
    /* Glow azul suave */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Respeita safe area do iPhone notch */
    padding-top: max(10px, env(safe-area-inset-top));
    height: 60px;
}

.top-timer-pill {
    /* Visual "Glass" integrado */
    background: rgba(0, 0, 0, 0.15);
    /* Escurece levemente o azul */
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Borda sutil premium */
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    /* Levemente maior para leitura */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    animation: fadeInDown 0.5s ease-out;
}

.timer-icon {
    font-size: 1rem;
    line-height: 1;
    opacity: 0.9;
}

.top-timer-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.top-timer-value {
    font-weight: 700;
    color: #fff;
    /* Branco para máxima limpeza e premium feel */
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    /* Glow sutil */
    font-variant-numeric: tabular-nums;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste Mobile */
@media (max-width: 360px) {
    .top-timer-pill {
        padding: 6px 14px;
        font-size: 0.85rem;
    }

    .top-timer-label {
        display: none;
    }

    .top-timer-pill::before {
        content: "Expira em:";
        font-weight: 500;
        margin-right: 4px;
        color: rgba(255, 255, 255, 0.9);
    }
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px;
    z-index: 100;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
    color: var(--text-color);
    text-align: center;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    text-align: center;
    color: white;
    background-color: var(--cta-orange);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
    transition: var(--transition);
    text-transform: uppercase;
    line-height: 1.2;
    /* Melhorar legibilidade em múltiplas linhas */
}

.cta-button:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 0, 0.6);
}

.cta-button.secondary {
    background-color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.cta-button.secondary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-3px);
    /* Reduzido o movimento para ser mais sutil */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* Sombra mais suave */
}

/* Hero Section */
/* Hero Section */
.hero {
    background: radial-gradient(circle at 50% 0%, #00BFFF 0%, #009ACD 100%);
    color: white;
    padding: 40px 0 80px;
    text-align: center;
    overflow: hidden;
    position: relative;
    /* Soft curve */
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.logo-container {
    margin-bottom: 24px;
}

.logo {
    margin: 0 auto;
    max-width: 140px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Premium Glass Card */
.hero-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 24px 20px;
    box-shadow: 0 15px 35px rgba(0, 154, 205, 0.2);
    max-width: 580px;
    margin: 0 auto;
}

.headline {
    font-size: 1.6rem;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subheadline {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 24px;
    opacity: 0.95;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.hero-middle-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 12px;
    display: block;
}

.hero-bullets {
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    background: none;
    /* remove old glass if any */
    padding: 0;
    border: none;
}

.bullet-item {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero specific CTA overrides */
.hero-card .cta-button {
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
    border-radius: 50px;
    padding: 16px 30px;
    font-size: 1.2rem;
    /* Larger focal point */
    transition: transform 0.2s, box-shadow 0.2s;
}

.hero-card .cta-button:active {
    transform: scale(0.96);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.4);
}

.micro-urgency-timer-container {
    margin-top: 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    gap: 6px;
    display: inline-flex;
}

.micro-urgency-timer {
    font-weight: 700;
    color: #fff;
}

/* SAFE ANIMATION LOGIC (FALLBACK GUARANTEED) */
.fade-in {
    opacity: 1;
    /* Default Visible */
    transform: none;
}

/* Only animate if JS loaded */
.js .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger */
.js .delay-1 {
    transition-delay: 0.1s;
}

.js .delay-2 {
    transition-delay: 0.2s;
}

.js .delay-3 {
    transition-delay: 0.3s;
}

.js .delay-4 {
    transition-delay: 0.4s;
}


/* Diagnosis Section */
.diagnosis-section {
    padding: 60px 0;
}

/* Diagnosis Section - Checklist Premium */
.checklist-card {
    background: #fff;
    border-radius: 20px;
    /* Radius Suave */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Sombra Leve Premium */
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    transition: transform 0.2s;
}

.checklist-item:last-child {
    border-bottom: none;
}

/* Hover effect */
.checklist-item:hover {
    transform: translateX(5px);
}

.c-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

.c-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
}

/* Checklist Stagger Animation (Scoped to card visibility) */
.js .checklist-card .checklist-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .checklist-card.visible .checklist-item {
    opacity: 1;
    transform: translateY(0);
}

/* Delays for checklist items specifically */
.js .checklist-card.visible .delay-1 {
    transition-delay: 0.1s;
}

.js .checklist-card.visible .delay-2 {
    transition-delay: 0.2s;
}

.js .checklist-card.visible .delay-3 {
    transition-delay: 0.3s;
}

.js .checklist-card.visible .delay-4 {
    transition-delay: 0.4s;
}

.js .checklist-card.visible .delay-5 {
    transition-delay: 0.5s;
}

.js .checklist-card.visible .delay-6 {
    transition-delay: 0.6s;
}

.diagnosis-conclusion {
    margin-top: 30px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* Activities Section */
.activities-section {
    padding: 60px 0;
    background-color: var(--white);
    /* Usar variável */
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    gap: 20px;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.gallery-content {
    padding: 15px;
    flex-grow: 1;
}

.gallery-content h3 {
    margin-bottom: 5px;
}

.gallery-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.slideshow-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 10px;
    text-align: center;
}

.slideshow-container img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    user-select: none;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    /* Adicionado para acessibilidade */
    border-radius: 50%;
    /* Botões circulares */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.next {
    right: 10px;
}

.prev {
    left: 10px;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 1);
}

.dots-container {
    text-align: center;
    margin-bottom: 40px;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
    border: none;
    padding: 0;
    /* Removido padding */
}

.active,
.dot:hover {
    background-color: var(--primary-blue);
}

/* --- Media Alert Section (Investigative Board) --- */
.media-alert-section {
    margin-top: 60px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Card apenas para o texto */
.media-text-card {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: -30px;
    /* Sobrepor levemente o board */
}

/* Container Visual das Imagens (O "Mural") */
.media-alert-board {
    position: relative;
    width: 100%;
    margin-top: 20px;
    height: 380px;
    /* Altura suficiente para as fotos */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 40px;
}

/* Board Strings (SVG Lines) */
.board-strings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

/* Style das Imagens */
.media-alert-image {
    position: absolute;
    margin: 0;
    padding: 8px 8px 30px 8px;
    /* Polaroid padding */
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    /* Bordas levemente arredondadas */
    width: 200px;
    /* Tamanho base maior */
    transition: transform 0.3s ease;
}

.media-alert-image img {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid #eee;
}

/* Pins (Alfinetes) */
.media-alert-image .pin {
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -8px;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle at 30% 30%, #ff7043, #d84315);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

.media-alert-image .pin::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(1px);
}

/* Positioning & Rotation */
.img-center {
    z-index: 5;
    top: 40px;
    transform: rotate(0deg) scale(1.05);
    /* Destaque central */
}

.img-left {
    z-index: 2;
    top: 50px;
    left: 20px;
    /* Ajuste manual para não depender apenas de % */
    transform: rotate(-3deg) scale(0.95);
    filter: brightness(0.95);
}

.img-right {
    z-index: 3;
    top: 50px;
    right: 20px;
    transform: rotate(3deg) scale(0.95);
    filter: brightness(0.95);
}

/* Responsive Mobile First Tweaks */
@media (max-width: 480px) {
    .media-alert-board {
        height: 320px;
    }

    .media-alert-image {
        width: 170px;
        /* Ainda legível, mas cabendo na tela */
    }

    .img-left {
        left: 0;
        top: 60px;
        transform: rotate(-3deg) translateX(10px);
    }

    .img-right {
        right: 0;
        top: 60px;
        transform: rotate(3deg) translateX(-10px);
    }

    .img-center {
        top: 30px;
    }
}

/* --- Clickable Thumbs & Hint --- */
.news-thumb {
    appearance: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
    outline: none;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
    /* Deixa o clique para o botão */
}

/* Hover/Focus Effects */
.media-alert-image:hover,
.news-thumb:focus-visible {
    transform: scale(1.02) translateY(-2px);
    /* Nota: como o media-alert-image já tem transform, 
       o ideal seria aplicar no filho ou somar. 
       Mas para simplificar e não quebrar a rotação:
       vamos usar apenas filtro e boxShadow no wrapper.
    */
    transform: none;
    /* Reset para não quebrar rotação do pai */
}

/* Aplica efeito no pai quando filho focado/hovered */
.media-alert-image:has(.news-thumb:hover),
.media-alert-image:has(.news-thumb:focus-visible) {
    z-index: 50 !important;
    /* Traz para frente */
    filter: brightness(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.click-hint-container {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
    z-index: 4;
}

.click-hint {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- LIGHTBOX MODAL (Premium) --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox[aria-hidden="false"] {
    visibility: visible;
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    width: 92vw;
    max-width: 1000px;
    height: 84vh;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.3s ease;
}

.lightbox[aria-hidden="false"] .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

/* Image Container */
.lightbox-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lightbox-img.changing {
    opacity: 0;
    transform: scale(0.98);
}

/* Buttons */
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    opacity: 0.8;
    transition: opacity 0.2s;
    z-index: 10001;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    padding: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Mobile Adjustments for Lightbox */
@media (max-width: 768px) {
    .lightbox-content {
        width: 100vw;
        height: 100vh;
        max-height: none;
        border-radius: 0;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
        border: none;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* MEMBERS AREA – CAROUSEL & FAN */
.members-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    overflow: hidden;
    /* Prevent overflow from fan or carousel */
}

.members-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* 1) Title Mobile: Order is natural in HTML (Title first) */
.members-title {
    margin-bottom: 10px;
    padding: 0 10px;
    /* Prevent edge touching */
}

/* 2) Carousel Wrapper */
.members-visual {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.members-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    /* Slightly wider to accommodate lateral peeking */
    padding: 0;
}

.members-slider {
    display: flex;
    gap: 20px;
    /* Consistente gap */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 30px 15% 40px;
    /* Padding inline para permitir preview lateral (centraliza o card de 80%) */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.members-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

/* Card Style for Images */
.member-slide {
    scroll-snap-align: center;
    flex: 0 0 80%;
    /* 80% width as requested */
    max-width: 280px;
    /* Keep reasonable max width */
    height: auto;
    aspect-ratio: 3/4;
    /* Ensure vertical card shape */
    border-radius: 20px;
    /* Grande, visual moderno */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 6px rgba(0, 0, 0, 0.05);
    /* Sombra moderna */
    background: #fff;
    object-fit: cover;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Leve borda sutil */
}

/* Optional: slight scale effect on scroll could be done via JS, 
   but simplistic card look is fine. 
   Let's add a slight rotation to the whole container or individual items? 
   No, just clean carousel for mobile as requested. */

/* Navigation Buttons (Mobile/Desktop invisible if not needed? User asked for interaction) */
.members-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.2rem;
    color: var(--cta-orange);
    /* Use orange for better visibility/action */
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.members-nav:hover {
    opacity: 1;
    background: #fff;
}

.members-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.members-nav.prev {
    left: 10px;
}

.members-nav.next {
    right: 10px;
}

/* Members Features - Light Layers */
.members-layered-list {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.ml-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.layer-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Separador sutil */
    transition: transform 0.2s;
}

.layer-item:hover {
    transform: translateX(5px);
}

.layer-item:last-child {
    border-bottom: none;
}

.layer-icon {
    font-size: 1.2rem;
    color: var(--cta-orange);
    /* Destaque */
    background: rgba(255, 140, 0, 0.1);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
}

.layer-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.layer-highlight {
    font-weight: 700;
    color: var(--text-color);
    font-size: 1.05rem;
}

.layer-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Stagger Animation scoped */
.js .members-layered-list .layer-item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.js .members-layered-list.visible .layer-item {
    opacity: 1;
    transform: translateY(0);
}

.js .members-layered-list.visible .delay-1 {
    transition-delay: 0.1s;
}

.js .members-layered-list.visible .delay-2 {
    transition-delay: 0.2s;
}

.js .members-layered-list.visible .delay-3 {
    transition-delay: 0.3s;
}

.js .members-layered-list.visible .delay-4 {
    transition-delay: 0.4s;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 0;
}

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

/* Benefit Item - Safe Premium Style (No Scroll Animation) */
.benefits-grid .benefit-item {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;

    /* CRITICAL SAFETY: Override Global Reveal */

}

/* Decoration Line */
.benefits-grid .benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00BFFF, #E0F7FA);
    opacity: 1;
}

/* Interactive States (Safe) */
.benefits-grid .benefit-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.benefits-grid .benefit-item:active {
    transform: scale(0.98) !important;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-item h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: var(--white);
}

.pricing-plans {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    border: 2px solid #eee;
    padding: 30px 20px;
    text-align: center;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.pricing-card.premium {
    border-color: var(--cta-orange);
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.15);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 10px 0 5px;
}

.payment-type {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pricing-card h3 {
    margin-top: 0;
}

.card-benefits {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Empurrar o botão para baixo */
}

.card-benefits li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.pricing-card .cta-button {
    margin-top: auto;
    /* Alinhar botões na parte inferior */
}

/* Bonus Section */
.bonus-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.bonus-grid {
    display: grid;
    gap: 20px;
}

.bonus-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bonus-card h4 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.bonus-section .bonus-illus {
    display: block;
    margin: 0 auto 12px;
    width: clamp(92px, 20vw, 120px);
    height: auto;
    /* Clean look: no shadow, no radius, blending with white card */
}

.bonus-card p {
    margin-bottom: 0;
}

/* Guarantee Section */
.guarantee-section {
    padding: 40px 0;
}

.guarantee-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 30px;
}

.guarantee-seal-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

.guarantee-text h3 {
    color: var(--cta-orange);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    padding: 0;
    overflow: hidden;
    /* Para o efeito de max-height funcionar */
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-color);
    border-radius: var(--radius);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    /* Aumentado o tempo para um efeito mais suave */
    padding: 0 20px;
}

.faq-answer p {
    padding-bottom: 20px;
    margin: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Valor alto para garantir que o conteúdo caiba */
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer .container {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-logo {
    display: block;
    margin: 0 auto 16px;
    width: 104px;
    height: auto;
    filter: none;
    /* Changed: Logo is now real image, no filter */
}

.footer-slogan {
    margin-bottom: 20px;
    font-size: 0.95rem;
    opacity: 0.95;
    line-height: 1.4;
    color: white;
}

.footer-contact {
    margin-bottom: 16px;
}

.social-link {
    color: white;
    font-size: 0.95rem;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Footer Icons */
.footer-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 0;
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

.icon-btn:active {
    transform: scale(0.98);
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    margin: 22px auto;
    width: min(520px, 90%);
}

.footer-rights {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .footer {
        padding: 50px 0;
    }

    .footer-logo {
        width: 120px;
    }
}

/* Animations - Corrected Safe Fallback */
.fade-in {
    opacity: 1;
    transform: none;
}

.js .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Media Queries */
@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    /* Enforce Centered Premium Look on Desktop */
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-card {
        padding: 40px 50px;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .logo {
        margin: 0 auto;
        max-width: 160px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .guarantee-text {
        max-width: 600px;
    }

    .pricing-plans {
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        /* Alinhar cards por altura */
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .bonus-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Restore Desktop Grid Layout */
    .members-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        grid-template-areas:
            "visual title"
            "visual text";
        gap: 30px 60px;
        /* Row Gap, Col Gap */
        text-align: left;
        max-width: 1000px;
        margin: 0 auto;
    }

    .members-visual {
        grid-area: visual;
        justify-content: flex-end;
        /* Align right side of left column */
    }

    .members-title {
        grid-area: title;
        align-self: end;
        /* Bottom of its cell */
        margin-bottom: 0;
        text-align: left;
    }

    .members-features {
        grid-area: text;
        align-self: start;
        /* Top of its cell */
    }

    /* Restore Fan Look on Desktop */
    .members-carousel-wrapper {
        width: 320px;
        /* Fixed width for fan container */
        height: 400px;
        max-width: none;
        overflow: visible;
        /* Allow overlapped cards to show */
    }

    .members-nav {
        display: none;
        /* Hide carousel buttons on desktop if fan is static/hoverable */
    }

    .members-slider {
        display: block;
        /* Disable flex carousel */
        overflow: visible;
        /* Disable scroll */
        position: relative;
        height: 100%;
        padding: 0;
    }

    .member-slide {
        position: absolute;
        top: 0;
        left: 50%;
        max-width: 280px;
        width: 100%;
        transition: all 0.4s ease;
        /* Fan Positions */
    }

    /* Apply Fan Transforms (Title: 1..5) */
    .member-slide:nth-child(1) {
        transform: translateX(-60%) translateY(40px) rotate(-15deg);
        z-index: 1;
    }

    .member-slide:nth-child(2) {
        transform: translateX(-55%) translateY(20px) rotate(-8deg);
        z-index: 2;
    }

    .member-slide:nth-child(3) {
        transform: translateX(-50%) translateY(0px) rotate(0deg);
        z-index: 3;
    }

    .member-slide:nth-child(4) {
        transform: translateX(-45%) translateY(20px) rotate(8deg);
        z-index: 2;
    }

    .member-slide:nth-child(5) {
        transform: translateX(-40%) translateY(40px) rotate(15deg);
        z-index: 1;
    }

    /* Hover Effect for Desktop Fan */
    .member-slide:hover {
        z-index: 10;
        transform: translateX(-50%) translateY(-20px) scale(1.1) rotate(0deg);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }
}

/* ANIMATION PREMIUM BENEFITS SECTION */
/* Base (visível sempre) */
.benefits-section .benefit-anim {
    will-change: transform;
    transform: translateY(10px) scale(0.99);
    /* ainda visível */
    transition: transform 600ms cubic-bezier(.2, .8, .2, 1),
        box-shadow 350ms ease;
}

/* Estado “entrou na viewport” */
.benefits-section .benefit-anim.in-view {
    transform: translateY(0) scale(1);
}

/* Hover/Active premium */
.benefits-section .benefit-anim:hover {
    transform: translateY(-6px) scale(1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.benefits-section .benefit-anim:active {
    transform: translateY(-2px) scale(0.98);
}

/* Ícone com micro pop */
.benefits-section .benefit-anim .benefit-icon {
    transition: transform 350ms ease;
}

.benefits-section .benefit-anim:hover .benefit-icon {
    transform: scale(1.08) rotate(-2deg);
}

.benefits-section .benefit-anim,
.benefits-section .benefit-anim .benefit-icon {
    transition: none !important;
    transform: none !important;
}


/* =========================================
/* =========================================
   PREMIUM APP-STYLE PRICING SECTION (SCOPED)
   ========================================= */

/* Section Background & Spacing */
.pricing-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 30%, rgba(0, 191, 255, 0.04) 0%, transparent 70%),
        linear-gradient(to bottom, #FAFAFA, #FFFFFF 20%, #F0F8FF 100%);
}

.pricing-section .section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Container */
.pricing-section .pricing-plans {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* ============================
   CARD BASE ARCHITECTURE
   ============================ */
.pricing-section .pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 24px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Glass/Premium Border Effect */
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 10px 40px -10px rgba(0, 0, 0, 0.07),
        0 2px 4px -1px rgba(0, 0, 0, 0.02),
        inset 0 0 0 1px rgba(0, 0, 0, 0.03);
    /* Fine inner stroke */

    margin: 0 !important;
    overflow: visible;
}

/* Top Shine Line (Micro-detail) */
.pricing-section .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1.5px;
    opacity: 0.7;
    z-index: 1;
}

/* Hover Interaction */
@media (hover: hover) {
    .pricing-section .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow:
            0 25px 50px -12px rgba(0, 0, 0, 0.15),
            0 8px 24px -4px rgba(0, 0, 0, 0.04);
    }
}

/* ============================
   PREMIUM CARD (HIGHLIGHT)
   ============================ */
.pricing-section .pricing-card.premium {
    /* Subtle Warm Tint Background */
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9F0 100%);
    z-index: 10;
    padding-top: 60px;
    /* Space for Floating Badge */
    /* Orange Halo/Border */
    border-color: rgba(255, 140, 0, 0.15);
}

/* Premium Top Shine */
.pricing-section .pricing-card.premium::before {
    background: linear-gradient(90deg, transparent, #FF8C00, transparent);
    opacity: 1;
}

/* Glow Effect Backing */
.pricing-section .pricing-card.premium .glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(closest-side, rgba(255, 140, 0, 0.06) 0%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Pill Badge */
.pricing-section .popular-badge {
    background: linear-gradient(90deg, #FF9000 0%, #FF6000 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.35);

    /* Floating Position */
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    border: 4px solid #fff;
    /* Cutout visual hack */
    white-space: nowrap;
}

/* ============================
   INTERMEDIATE CARD (BEST VALUE)
   ============================ */
.pricing-section .pricing-card.intermediate {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
    z-index: 5;
    border-color: rgba(0, 191, 255, 0.15);
}

/* Intermediate Top Shine */
.pricing-section .pricing-card.intermediate::before {
    background: linear-gradient(90deg, transparent, #00BFFF, transparent);
    opacity: 0.8;
}

/* ============================
   BASIC CARD (NEUTRAL)
   ============================ */
.pricing-section .pricing-card.basic {
    background: #fff;
    z-index: 1;
    border-color: rgba(0, 0, 0, 0.05);
}

/* Basic Top Shine */
.pricing-section .pricing-card.basic::before {
    background: linear-gradient(90deg, transparent, #D1D5DB, transparent);
    opacity: 0.5;
}

/* ============================
   TYPOGRAPHY & CONTENT
   ============================ */

/* Title */
.pricing-section .p-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

/* Benefits List */
.pricing-section .card-benefits {
    text-align: left;
    margin-bottom: 32px;
    list-style: none;
    padding: 0 8px;
}

.pricing-section .card-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    padding: 0;
}

.pricing-section .li-icon {
    width: 22px;
    flex: 0 0 22px;
    display: flex;
    justify-content: center;
    line-height: 1.2;
    margin-top: 2px;
    text-align: center;
}

.pricing-section .li-text {
    flex: 1;
    display: block;
    line-height: 1.5;
}

.pricing-section .nowrap {
    white-space: nowrap;
}

/* Premium List Darker */
.pricing-section .pricing-card.premium .card-benefits li {
    color: #333;
    margin-bottom: 14px;
}

/* ============================
   PRICE BLOCK
   ============================ */
.pricing-section .pricing-price-box {
    margin-top: auto;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section .p-old {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #9CA3AF;
    margin-bottom: 2px;
    font-weight: 500;
}

.pricing-section .p-main-price {
    display: flex;
    align-items: flex-start;
    gap: 3px;
    line-height: 1;
    color: var(--text-color);
}

.pricing-section .p-main-price .currency {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 6px;
    color: var(--text-color);
}

.pricing-section .p-main-price .value {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing-section .p-term {
    font-size: 0.8rem;
    color: #6B7280;
    margin-top: 8px;
    font-weight: 600;
    text-transform: lowercase;
}

/* ============================
   ACCESS TAGS
   ============================ */
.pricing-section .p-access-tag {
    background: #FFEDD5;
    /* Lighter Orange */
    color: #C2410C;
    /* Darker Orange text */
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    display: inline-flex;
    justify-content: center;
    width: fit-content;
    align-self: center;
}

.pricing-section .p-access-tag.blue {
    background: #E0F2FE;
    color: #0284C7;
    padding: 10px 20px;
}

/* Premium Tag Special (Double Line) */
.pricing-section .pricing-card.premium .p-access-tag {
    background: rgba(255, 140, 0, 0.06);
    border: 1px solid rgba(255, 140, 0, 0.1);
    border-radius: 16px;
    flex-direction: column;
    gap: 2px;
    padding: 12px 24px;
    width: 100%;
}

/* Two-line Logic */
.pricing-section .acc-line1 {
    font-size: 0.95rem;
    color: #EA580C;
}

.pricing-section .acc-line2 {
    font-size: 0.75rem;
    font-weight: 800;
    opacity: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C2410C;
}

/* ============================
   BUTTONS (CTA)
   ============================ */
.pricing-section .cta-button {
    width: 100%;
    padding: 18px;
    font-size: 1rem;
    border-radius: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-section .cta-button:active {
    transform: scale(0.98);
}

/* Primary (Orange) */
.pricing-section .cta-button.primary {
    background: linear-gradient(135deg, #FF9100 0%, #FF6D00 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 109, 0, 0.25);
}

.pricing-section .cta-button.primary:hover {
    box-shadow: 0 12px 28px rgba(255, 109, 0, 0.35);
    filter: brightness(1.05);
}

/* Secondary (Blue) */
.pricing-section .cta-button.secondary {
    background: linear-gradient(135deg, #0EA5E9 0%, #0284C7 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.pricing-section .cta-button.secondary:hover {
    box-shadow: 0 12px 28px rgba(14, 165, 233, 0.35);
}

/* Neutral Outline (Basic) */
.pricing-section .cta-button.neutral {
    background: #fff;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: none;
}

.pricing-section .cta-button.neutral:hover {
    background: #F0F9FF;
    border-color: var(--primary-dark);
}

.pricing-section .pricing-card.basic .cta-button {
    font-size: 0.98rem;
    padding: 15px 20px;
    letter-spacing: 0.2px;
    line-height: 1.2;
}

/* ============================
   TRUST LINE (Icons)
   ============================ */
.pricing-section .trust-line {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-section .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #9CA3AF;
    font-weight: 600;
}

.pricing-section .trust-item .icon {
    font-size: 1rem;
    filter: grayscale(100%);
    opacity: 0.6;
}

/* ============================
   DESKTOP LAYOUT
   ============================ */
@media (min-width: 900px) {
    .pricing-section .pricing-plans {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        max-width: 1050px;
        gap: 32px;
    }

    .pricing-section .pricing-card {
        flex: 1;
        max-width: 330px;
        margin-bottom: 0;
    }

    /* Desktop Highlight */
    .pricing-section .pricing-card.premium {
        transform: scale(1.1);
        z-index: 15;
    }

    .pricing-section .pricing-card.premium:hover {
        transform: scale(1.1) translateY(-6px);
    }
}

/* --- About Social Section (Quem Somos / Prova Social) --- */
.about-social-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
    /* Segue o bg do site */
    text-align: center;
}

.about-header {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.about-header h2 {
    font-size: 1.6rem;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.about-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Container de Cards (Mobile First: Empilhados) */
.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

/* Card Premium ("Risco Zero" alike) */
.about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
    width: 100%;
    max-width: 480px;
    /* Limite de largura no mobile */
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
    /* Borda ultra sutil */
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

/* Área da "Moldura/Preview" do Print */
.about-preview {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Sombra interna leve */
    overflow: hidden;
    margin-bottom: 12px;
    background: #f9f9f9;
}

.about-preview img {
    width: 100%;
    height: auto;
    display: block;
    cursor: default;
    /* Garante cursor padrão */
}

/* Informações do Perfil */
.about-info {
    margin-top: 4px;
}

.about-info strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.about-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Desktop (>= 900px): Lado a lado */
@media (min-width: 900px) {
    .about-grid {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        max-width: 1000px;
        gap: 40px;
    }

    .about-card {
        padding: 30px;
        max-width: 450px;
    }
}