:root {
    --primary: #8B0000;
    --primary-dark: #5C0000;
    --primary-light: #A00000;
    --secondary: #FFD600;
    --accent: #FFD600;
    --gold: #FFD600;
    --light: #F8F9FA;
    --dark: #1A1A1A;
    --gray: #6C757D;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}


.gold-gradient {
    background: linear-gradient(135deg, var(--gold) 0%, #F4D03F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, #FFE033 100%);
    color: var(--dark);
    border: none;
    padding: 12px 90px; /* ← Aumentei a largura */

    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 214, 0, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.5);
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    background:
        linear-gradient(135deg, rgba(139, 0, 0, 0.9) 0%, rgba(90, 0, 0, 0.95) 100%),
        url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 100, 100, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 150, 150, 0.08) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}



.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: radial-gradient(circle,
    rgba(255, 220, 220, 0.5) 0%,
    rgba(220, 80, 80, 0.4) 30%,
    rgba(180, 20, 20, 0.3) 60%,
    transparent 100%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    box-shadow:
        0 0 25px rgba(255, 120, 120, 0.4),
        inset 0 0 15px rgba(255, 180, 180, 0.3),
        0 0 40px rgba(255, 80, 80, 0.2);
    border: 1px solid rgba(255, 200, 200, 0.3);
    filter: brightness(1.1) contrast(1.2);
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 75px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    border-radius: 50% 45% 50% 45%;
    animation-duration: 12s;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 115px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    border-radius: 48% 52% 52% 48%;
    animation-duration: 14s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 55px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    border-radius: 52% 48% 48% 52%;
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translateY(5px) translateX(-5px) rotate(180deg) scale(0.98);
    }
    75% {
        transform: translateY(10px) translateX(8px) rotate(270deg) scale(1.02);
    }
}

.floating-sugars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-sugar {
    position: absolute;
    background: radial-gradient(circle,
    rgba(255, 200, 200, 0.4) 0%,
    rgba(200, 50, 50, 0.3) 30%,
    rgba(150, 0, 0, 0.2) 70%,
    transparent 100%);
    border-radius: 50%;
    animation: bloodFloat 12s ease-in-out infinite;
    box-shadow:
        0 0 25px rgba(255, 100, 100, 0.3),
        inset 0 0 15px rgba(255, 150, 150, 0.2),
        inset 0 0 5px rgba(255, 255, 255, 0.1);
    filter: blur(0.8px);
    border: 1px solid rgba(255, 150, 150, 0.1);
}

/* Células maiores (glóbulos vermelhos) */
.floating-sugar:nth-child(1) {
    width: 120px;
    height: 110px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    opacity: 0.8;
    border-radius: 50% 45% 50% 45%;
    animation-duration: 15s;
}

.floating-sugar:nth-child(2) {
    width: 140px;
    height: 130px;
    top: 65%;
    left: 80%;
    animation-delay: 2s;
    opacity: 0.7;
    border-radius: 48% 52% 52% 48%;
    animation-duration: 18s;
}

.floating-sugar:nth-child(3) {
    width: 100px;
    height: 95px;
    top: 15%;
    left: 75%;
    animation-delay: 4s;
    opacity: 0.6;
    border-radius: 52% 48% 48% 52%;
    animation-duration: 14s;
}

/* Células médias */
.floating-sugar:nth-child(4) {
    width: 80px;
    height: 75px;
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    opacity: 0.7;
    border-radius: 50% 46% 54% 50%;
    animation-duration: 16s;
}

.floating-sugar:nth-child(5) {
    width: 90px;
    height: 85px;
    top: 45%;
    left: 5%;
    animation-delay: 8s;
    opacity: 0.5;
    border-radius: 46% 54% 50% 50%;
    animation-duration: 13s;
}

.floating-sugar:nth-child(6) {
    width: 70px;
    height: 65px;
    top: 70%;
    left: 90%;
    animation-delay: 10s;
    opacity: 0.6;
    border-radius: 54% 46% 46% 54%;
    animation-duration: 17s;
}

/* Células menores (plaquetas) */
.floating-sugar:nth-child(7) {
    width: 40px;
    height: 35px;
    top: 30%;
    left: 50%;
    animation-delay: 1s;
    opacity: 0.4;
    border-radius: 45% 55% 55% 45%;
    animation-duration: 8s;
}

.floating-sugar:nth-child(8) {
    width: 35px;
    height: 40px;
    top: 55%;
    left: 35%;
    animation-delay: 3s;
    opacity: 0.5;
    border-radius: 55% 45% 45% 55%;
    animation-duration: 9s;
}

.floating-sugar:nth-child(9) {
    width: 45px;
    height: 40px;
    top: 85%;
    left: 65%;
    animation-delay: 5s;
    opacity: 0.4;
    border-radius: 50% 50% 45% 55%;
    animation-duration: 7s;
}

@keyframes bloodFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg) scale(1.05);
    }
    50% {
        transform: translateY(5px) translateX(-5px) rotate(180deg) scale(0.95);
    }
    75% {
        transform: translateY(10px) translateX(8px) rotate(270deg) scale(1.02);
    }
}

/* Section Styles */
.section {
    padding: 30px 0;
    position: relative;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

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

.section-title p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.benefit-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: -1;
}

.benefit-card:hover:before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.guarantee-badge i {
    margin-right: 10px;
    color: var(--gold);
}

/* Footer */
footer {
    background: var(--dark);
    /* background: #FFF5EB; */
    color: white;
    padding: 80px 0 30px;
}

.footer-links h5 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.promo-banner {
    position: absolute;
    top: 0;
    left: -100%; /* começa fora da tela */
    width: 100%;
    background: linear-gradient(90deg, #ff006a, #ff7b00);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: left 0.8s ease-out, opacity 0.6s ease-out;
}

/* BACKGROUND */
.offer-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 20% 30%, #8b0000 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, #660000 0%, transparent 45%),
        radial-gradient(circle at 40% 80%, #550000 0%, transparent 35%),
        radial-gradient(circle at 60% 20%, #770000 0%, transparent 30%),
        linear-gradient(135deg, #2a0000 0%, #4a0000 30%, #3a0000 70%, #1a0000 100%);
    position: relative;
    overflow: hidden;
}

/* Efeito de plasma/fluido sanguíneo */
.offer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(255, 50, 50, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(255, 100, 100, 0.1) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(200, 0, 0, 0.08) 0%, transparent 65%);
    animation: plasmaPulse 8s ease-in-out infinite;
    pointer-events: none;
}

/* Textura de plasma sanguíneo */
.offer-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 1px, transparent 2px),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.02) 1px, transparent 3px),
        radial-gradient(circle at 50% 50%, rgba(255, 200, 200, 0.01) 1px, transparent 4px);
    background-size: 120px 120px, 180px 180px, 200px 200px;
    animation: bloodFlow 25s linear infinite;
    pointer-events: none;
}

@keyframes plasmaPulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes bloodFlow {
    0% {
        background-position: 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 120px 120px, 180px 180px, 200px 200px;
    }
}

/* Efeito de pulsação no fundo */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.001);
    }
}

.offer-section {
    animation: heartbeat 6s ease-in-out infinite;
}

/* HEADLINE */
.offer-title {
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.offer-title .highlight {
    color: #ffd600;
}

/* LEFT TEXT */
.left-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
}

.left-desc {
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
}

/* BOOK AREA */
.bonus-books {
    gap: 40px;
}

.book-box {
    text-align: center;
    max-width: 250px;
}

.book-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.book-caption {
    margin-top: 15px;
    font-weight: 600;
    color: #fff;
}

.book-caption span {
    font-weight: 400;
    opacity: 0.8;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .offer-title {
        font-size: 2rem;
    }
    .left-title {
        font-size: 1.6rem;
    }
}


/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: yellow;
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(58, 134, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(58, 134, 255, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}


.guarantee-box p {
    margin: 0;
    color: white;
}

.guarantee-box p:first-child {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.countdown {
    background-color: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px 25px;
    margin: 40px 0;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    text-align: center;
    transition: all .3s ease;
}

.countdown:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Layout mais sólido e alinhado */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.countdown-item {
    text-align: center;
}

/* Círculos mais premium */
.countdown-number {
    font-size: 2.8rem;
    font-weight: 800;
    background-color: #ffffff;
    color: var(--primary);
    width: 90px;
    height: 90px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.7);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Micro-efeito de animação elegante */
.countdown-number:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Legenda mais legível */
.countdown-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 600;
    opacity: 0.9;
}

.promo-banner {
    background: #1c1c1c;
    color: #ffffff;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
}

/* Cria o efeito inclinado */
.promo-banner::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 80px;
    background: #1c1c1c;
    transform: skewY(-3deg);
    transform-origin: top left;
    z-index: -1;
}

.promo-banner .line-1 {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.promo-banner .line-2 {
    font-size: 34px;
    color: #FFE600;
    font-weight: 800;
    margin: 0;
}

/* Premium FAQ Styles */
    .premium-faq-section {
        position: relative;
    }

    .badge-premium-faq {
        display: inline-block;
        background: rgba(227, 0, 0, 0.1);
        color: #e30000;
        padding: 8px 16px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid rgba(227, 0, 0, 0.2);
    }

    .premium-accordion {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .premium-accordion-item {
        border-bottom: 1px solid #e9ecef;
        background: white;
    }

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

    .premium-accordion-header {
        margin: 0;
    }

    .premium-accordion-button {
        width: 100%;
        padding: 1.5rem;
        background: white;
        border: none;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        font-weight: 600;
        color: #212529;
    }

    .premium-accordion-button:hover {
        background: #f8f9fa;
    }

    .premium-accordion-button:not(.collapsed) {
        background: #f8f9fa;
        color: #e30000;
    }

    .premium-accordion-button:not(.collapsed) .accordion-arrow {
        transform: rotate(180deg);
    }

    .accordion-icon {
        width: 40px;
        height: 40px;
        background: rgba(227, 0, 0, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e30000;
    }

    .accordion-arrow {
        transition: transform 0.3s ease;
        color: #6c757d;
    }

    .premium-accordion-collapse {
        transition: all 0.3s ease;
    }

    .premium-accordion-body {
        padding: 1.5rem;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
    }

    /* Premium Content Styles */
    .premium-content-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        height: 100%;
    }

    .badge-premium-content {
        display: inline-block;
        background: rgba(227, 0, 0, 0.1);
        color: #e30000;
        padding: 6px 12px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .premium-feature {
        padding: 1rem 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .premium-feature:last-child {
        border-bottom: none;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: rgba(227, 0, 0, 0.05);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .premium-benefits-card {
        background: white;
        border-radius: 16px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        height: 100%;
    }

    .benefit-check {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .premium-stats {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border: 1px solid #e9ecef;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        color: #6c757d;
    }

    /* Premium CTA Styles */
    .premium-final-cta {
        background: linear-gradient(135deg, #8B0000 0%, #e30000 50%, #8B0000 100%);
        position: relative;
    }

    .premium-final-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.03"><polygon points="0,0 1000,50 1000,100 0,100"/></svg>');
        background-size: cover;
    }

    .badge-premium-cta {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 8px 20px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .premium-cta-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 16px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-premium-cta {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        color: #8B0000;
        border: none;
        font-weight: 700;
        padding: 12px 24px;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    }

    .btn-premium-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
        color: #8B0000;
    }

    .guarantee-badge {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
    }

    .gold-gradient {
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    

    @keyframes float {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .premium-accordion-button {
            padding: 1.25rem;
        }

        .premium-content-card,
        .premium-benefits-card {
            padding: 1.5rem !important;
        }

        .premium-cta-card {
            text-align: center;
        }
    }


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .countdown-item {
        margin: 0 5px;
    }

    .countdown-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}

.img-center img {
    max-width: 100%;
    height: auto;
}
