@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --color-bg-light: #FAFDFD;
    --color-bg-alt: #F1F7F9;
    --color-text-title: #0F2942;
    --color-text-body: #475569;
    --color-text-muted: #64748B;
    
    --color-primary: #028090;
    --color-primary-rgb: 2, 128, 144;
    --color-primary-light: #E0F2FE;
    --color-primary-dark: #004E64;
    --color-accent: #00A896;
    --color-accent-rgb: 0, 168, 150;
    
    --color-cta: #10B981;
    --color-cta-hover: #059669;
    --color-cta-rgb: 16, 185, 129;
    
    --color-dark-bg: #0A1322;
    --color-dark-card: #152238;
    --color-dark-text: #F8FAFC;
    
    --color-error: #EF4444;
    --color-error-bg: #FEE2E2;
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 41, 66, 0.04);
    --shadow-md: 0 10px 25px rgba(15, 41, 66, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 41, 66, 0.1);
    --shadow-cta: 0 8px 24px rgba(16, 185, 129, 0.25);
    
    /* Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    touch-action: pan-x pan-y;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    color: var(--color-text-title);
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 1rem;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background-color: var(--color-dark-bg);
    color: var(--color-dark-text);
}

.section-dark h2 {
    color: var(--color-dark-text);
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .grid-4 .card { padding: 1.25rem 1rem; }
    .section { padding: 4rem 0; }
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent) !important; }
.text-primary { color: var(--color-primary) !important; }

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Badges */
.badge-capsule {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge-icon {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    display: inline-block;
    flex-shrink: 0;
}

.badge-droplet-img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.badge-dark {
    background-color: var(--color-text-title);
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-green {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--color-cta);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-accent {
    background-color: rgba(2, 128, 144, 0.15);
    color: var(--color-primary);
}

/* Buttons */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: var(--color-cta);
    color: #FFF;
    font-weight: 800;
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-transform: uppercase;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-cta);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    animation: pulse-cta 2s infinite;
}

.btn-cta:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.btn-cta:active {
    transform: translateY(1px);
}

.btn-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: none;
    animation: shine-cta 3.5s infinite ease-in-out;
}

.btn-muted {
    background-color: #E2E8F0;
    color: var(--color-text-body);
    box-shadow: none;
    border: 1px solid #CBD5E1;
    animation: none;
}

.btn-muted:hover {
    background-color: #CBD5E1;
    box-shadow: none;
    transform: none;
}

/* Video Player Mock */
.video-wrapper {
    max-width: 420px;
    aspect-ratio: 9 / 16;
    background: linear-gradient(135deg, #D53F8C 0%, #97266D 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 1.5rem auto 2rem;
    position: relative;
    overflow: hidden;
    border: 6px solid #FFF;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(151, 38, 109, 0.7);
    color: #FFF;
    padding: 1rem;
    text-align: center;
    z-index: 10;
}

.video-overlay h3 {
    color: #FFF;
    font-size: clamp(1rem, 4vw, 1.35rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #FFF;
    color: #FFF;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.8rem;
    width: 100%;
    max-width: 220px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.video-btn svg {
    width: 16px;
    height: 16px;
}

.video-btn:hover {
    background: #FFF;
    color: #97266D;
}

.video-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Cards System */
.card {
    background-color: #FFF;
    border: 1px solid rgba(11, 27, 61, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(2, 128, 144, 0.15);
}

/* Card Icon Box */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

/* Compressed Benefits Cards */
.benefits-card {
    padding: 1.25rem 1.25rem;
    text-align: center;
}

.benefits-card .icon-box {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    background-color: transparent;
}

.benefits-card .icon-box svg {
    width: 22px;
    height: 22px;
}

.benefits-card h3 {
    font-size: 1.05rem !important;
    margin-bottom: 0.5rem !important;
}

.benefits-card p {
    font-size: 0.85rem !important;
    line-height: 1.4;
    margin: 0;
}

/* WhatsApp Mobile Testimonial */
.phone-mockup-wrapper {
    position: relative;
    max-width: 250px;
    margin: 0 auto;
}

.phone-mockup {
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #1E293B;
    aspect-ratio: 320 / 653.4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-screen {
    background: #0F172A;
    border-radius: 32px;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #E2E8F0;
    font-size: 0.75rem;
    position: relative;
}

.phone-feedback-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #0b141a;
}

.phone-header {
    background: #070A0F;
    padding: 10px 14px 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-avatar {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background-color: #64748B;
}

.phone-user-info span {
    display: block;
    font-weight: 600;
}

.phone-user-info small {
    color: #10B981;
}

.phone-chat-body {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.chat-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 12px;
    line-height: 1.4;
    word-wrap: break-word;
}

.bubble-received {
    background-color: #1E293B;
    color: #E2E8F0;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.bubble-sent {
    background-color: var(--color-primary-dark);
    color: #FFF;
    align-self: flex-end;
    border-top-right-radius: 2px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary);
    color: #FFF;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    z-index: 10;
}

.slider-arrow:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-left { left: -60px; }
.slider-right { right: -60px; }

@media (max-width: 768px) {
    .slider-left { left: 10px; }
    .slider-right { right: 10px; }
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: #CBD5E1;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--color-primary);
    width: 20px;
}

/* 3D CSS Books for Bonus */
.book-container {
    width: 140px;
    height: 190px;
    perspective: 1000px;
    margin: 0 auto 1.5rem;
}

.book {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg);
    transition: transform var(--transition-slow);
}

.book:hover {
    transform: rotateY(-5deg) translateY(-8px);
}

.book-cover-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    border-radius: 4px 12px 12px 4px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    color: #FFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
}

.book-cover-front::after {
    content: '';
    position: absolute;
    top: 0;
    left: 4px;
    width: 6px;
    height: 100%;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 1px 0 3px rgba(0,0,0,0.2);
}

.book-spine {
    position: absolute;
    width: 16px;
    height: 100%;
    background: var(--color-primary-dark);
    transform: rotateY(-90deg) translateZ(8px);
    left: -8px;
    border-radius: 4px 0 0 4px;
    z-index: 1;
}

.book-pages {
    position: absolute;
    width: 96%;
    height: 96%;
    background: #E2E8F0;
    top: 2%;
    left: 2%;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    transform: translateZ(-5px);
    z-index: 0;
}

/* Pricing Table styling */
.pricing-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.popular {
    border-color: #FFC107;
    border-width: 2px;
    transform: scale(1.03);
    background: #FFF;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.25), 0 0 25px rgba(255, 193, 7, 0.2), var(--shadow-md);
}

.pricing-card.popular::before {
    display: none;
}

@media (max-width: 768px) {
    .pricing-card.popular { transform: none; }
}

.pricing-ribbon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFC107;
    color: #0B1121;
    padding: 0.4rem 1.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.5);
    text-shadow: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-cta);
    margin: 1.5rem 0;
    line-height: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-cta);
    stroke-width: 3;
    fill: none;
}

/* Checklist items with X mark */
.checklist-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--color-text-title);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 0;
}

.checklist-icon {
    color: var(--color-error);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Guarantee Section Box */
.guarantee-box {
    background: #FFF;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(11, 27, 61, 0.08);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-seal {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    display: block;
    transition: transform var(--transition-normal);
}

.guarantee-seal:hover {
    transform: scale(1.08) rotate(3deg);
}

/* Specialist Section */
.specialist-card {
    background: #FFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 960px;
    margin: 0 auto;
    border: 1px solid rgba(11, 27, 61, 0.05);
}

.specialist-img-container {
    background-color: var(--color-bg-alt);
    position: relative;
    overflow: hidden;
}

.specialist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.specialist-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specialist-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.stat-item {
    background: var(--color-bg-alt);
    padding: 1rem 0.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(11, 27, 61, 0.04);
}

.stat-val {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .specialist-card { grid-template-columns: 1fr; }
    .specialist-content { padding: 2rem; }
}

/* Testimonial Text Slider */
.test-slider-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.test-card {
    background: #FFF;
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 27, 61, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.test-card::after {
    content: '“';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 5rem;
    font-family: serif;
    color: rgba(2, 128, 144, 0.08);
    line-height: 1;
}

.test-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.test-text {
    font-style: italic;
    color: var(--color-text-title);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    object-fit: cover;
}

.test-name {
    font-weight: 700;
    color: var(--color-text-title);
    display: block;
}

.test-role {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .test-grid { grid-template-columns: 1fr; }
}

/* FAQ Accordion */
.faq-wrapper {
    max-width: 720px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #FFF;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(11, 27, 61, 0.04);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text-title);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform var(--transition-normal);
}

.faq-item.active {
    border-color: rgba(2, 128, 144, 0.15);
    box-shadow: var(--shadow-md);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    background: var(--color-bg-light);
}

.faq-answer-content {
    padding: 1.5rem;
    border-top: 1px solid rgba(11, 27, 61, 0.04);
    font-size: 0.95rem;
    color: var(--color-text-body);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes pulse-cta {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes shine-cta {
    0% {
        left: -60%;
    }
    30% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}

/* ==========================================================================
   HORIZONTAL CARDS (Veja Algumas Dinâmicas)
   ========================================================================== */
.card-horizontal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem !important;
}

.card-horizontal-body {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.card-horizontal-body .icon-box {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    margin-bottom: 0;
}

.card-horizontal-body .icon-box svg {
    width: 22px;
    height: 22px;
}

.card-horizontal-text {
    flex: 1;
}

.card-horizontal-text h3 {
    font-size: 1.15rem !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.3;
    text-align: left;
}

.card-horizontal-text p {
    font-size: 0.85rem !important;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin-bottom: 0 !important;
    text-align: left;
}

.card-horizontal-footer {
    font-weight: 700;
    color: var(--color-text-title);
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    gap: 4px;
    border-top: 1px solid rgba(15, 41, 66, 0.08);
    padding-top: 0.75rem !important;
}

/* ==========================================================================
   SECURITY INDICATORS
   ========================================================================== */
.security-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.security-item svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    flex-shrink: 0;
}

/* ==========================================================================
   PREMIUM & BADGE DECORATIONS
   ========================================================================== */
.premium-crown {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.35rem;
    fill: #FBBF24;
    stroke: #D97706;
    stroke-width: 1.5;
}

.ribbon-icon {
    width: 11px;
    height: 11px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.25rem;
    fill: #FFF;
    stroke: none;
    position: relative;
    top: -1px;
}

/* ==========================================================================
   SECURE BADGE INDICATORS (Bottom CTA)
   ========================================================================== */
.secure-badge-row {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.section-dark .secure-badge-row {
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 768px) {
    .secure-badge-row {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
    }
    .secure-badge-dot {
        display: none;
    }
}

.secure-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform var(--transition-fast);
}

.secure-badge-item:hover {
    transform: translateY(-2px);
    color: #FFF;
}

.secure-badge-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

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

.secure-badge-icon.icon-shield {
    color: var(--color-cta); /* Green */
}

.secure-badge-icon.icon-guarantee {
    color: #FBBF24; /* Gold */
}

.secure-badge-icon.icon-lightning {
    color: #FBBF24; /* Gold */
}

.secure-badge-dot {
    color: rgba(255, 255, 255, 0.15);
    font-size: 1rem;
}

/* Bonus Images (New Custom Images replacing 3D CSS Books) */
.bonus-img-container {
    margin-top: -2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
    aspect-ratio: 16 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
    border-top-left-radius: var(--radius-md);
    border-top-right-radius: var(--radius-md);
    background-color: rgba(2, 128, 144, 0.05);
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.card:hover .bonus-img {
    transform: scale(1.05);
}

/* Responsive adjustment for CTA buttons on mobile to stay on a single line */
@media (max-width: 768px) {
    .btn-cta {
        padding: 1rem 1.25rem;
        font-size: clamp(0.75rem, 3.5vw, 0.95rem);
        white-space: nowrap;
    }
}

/* ==========================================================================
   DYNAMIC CARD DOCK SVG MICRO-ANIMATIONS
   ========================================================================== */
.icon-box svg {
    transition: transform var(--transition-fast) ease-in-out;
}

/* 1. Floating animation (Mobilidade) */
@keyframes float-icon {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}
.card:hover .icon-ani-float {
    animation: float-icon 1.5s ease-in-out infinite;
}

/* 2. Expanding layers animation (Resistência) */
@keyframes layers-icon {
    0% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.1) translateY(-2px); }
    100% { transform: scale(1) translateY(0); }
}
.card:hover .icon-ani-layers {
    animation: layers-icon 1.5s ease-in-out infinite;
}

/* 3. Spinning starburst/loading animation (Coordenação) */
@keyframes spin-icon {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.card:hover .icon-ani-spin {
    animation: spin-icon 4s linear infinite;
}

/* 4. Swinging bell/balance animation (Equilíbrio) */
@keyframes bell-icon {
    0% { transform: rotate(0); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-12deg); }
    75% { transform: rotate(8deg); }
    100% { transform: rotate(0); }
}
.card:hover .icon-ani-bell {
    transform-origin: top center;
    animation: bell-icon 1.5s ease-in-out infinite;
}

/* 5. Heartbeat pulse animation (Macarrão) */
@keyframes heart-icon {
    0% { transform: scale(1); }
    15% { transform: scale(1.15); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
    100% { transform: scale(1); }
}
.card:hover .icon-ani-heart {
    animation: heart-icon 1.2s ease-in-out infinite;
}

/* 6. Protecting wiggle shield animation (Idosos) */
@keyframes shield-icon {
    0% { transform: rotate(0) scale(1); }
    25% { transform: rotate(-6deg) scale(1.06); }
    75% { transform: rotate(6deg) scale(1.06); }
    100% { transform: rotate(0) scale(1); }
}
.card:hover .icon-ani-shield {
    animation: shield-icon 1.2s ease-in-out infinite;
}

/* 8. Pulsing group checkmark animation (Grupo) */
@keyframes group-icon {
    0% { transform: scale(1) rotate(0); }
    50% { transform: scale(1.15) rotate(5deg); }
    100% { transform: scale(1) rotate(0); }
}
.card:hover .icon-ani-group {
    animation: group-icon 1.2s ease-in-out infinite;
}




/* App-like behavior (Temporarily disabled for sales page)
body {
  -webkit-user-select: none;
  user-select: none;
}
*/

input, textarea {
  -webkit-user-select: auto;
  user-select: auto;
}
