:root {
    --primary-color: #D35400;
    --primary-hover: #E67E22;
    --secondary-color: #F39C12;
    --bg-color: #FDFBF7;
    --bg-alt: #F4EBE1;
    --text-color: #2C1E16;
    --text-light: #5A3D2B;
    --success-color: #27AE60;
    --card-bg: #FFFFFF;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius: 16px;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Top Marquee */
.top-marquee {
    display: flex;
    overflow: hidden;
    background-color: #111111;
    color: #ffffff;
    padding: 12px 0;
    white-space: nowrap;
    position: sticky;
    top: 0;
    z-index: 999;
}

.top-marquee-content {
    display: flex;
    flex-shrink: 0;
    padding-right: 2rem;
    animation: marquee-scroll 45s linear infinite;
}

.top-marquee-content span {
    padding-right: 3rem;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-color);
}

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

.text-highlight {
    color: var(--primary-color);
}

.mt-8 {
    margin-top: 2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(211, 84, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(211, 84, 0, 0);
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(211, 84, 0, 0.4);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
    display: block;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    font-size: 1.4rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg-color) 100%);
    padding: 15px 0 4rem;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    animation: fadeInUp 0.8s ease backwards;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-kit-wrapper {
    margin: 1.5rem 0;
    width: 100%;
    max-width: 450px; /* Tamaño máximo proporcional para PC */
}

.hero-kit-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.hero-text .subheadline {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-highlight {
    background: white;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 2.5rem;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.hero-image {
    flex: 1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

/* Sections Base */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Conexão */
.conexao .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.pain-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pain-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.cross-icon {
    font-size: 1.5rem;
}

.pain-card p {
    font-weight: 500;
    margin: 0;
}

.big-interest {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Agitação */
.agitacao {
    background-color: var(--bg-alt);
}

.truth-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.truth-text {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.truth-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.text-strong {
    font-size: 1.6rem;
    font-weight: 700;
}

/* Mecanismo */
.check-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-list li {
    font-size: 1.2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.simple-banner {
    background: linear-gradient(135deg, var(--success-color), #208B4B);
    color: white;
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Apresentação */
.apresentacao {
    background-color: var(--bg-alt);
}

.highlight-title {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.book-wrapper {
    margin: 1.5rem auto 2rem auto;
    width: 100%;
    max-width: 350px;
}

.book-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.guia-text {
    font-size: 1.4rem;
    margin-bottom: 3rem;
}

.lista-receitas {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    text-align: left;
}

.lista-receitas ul {
    list-style: none;
}

.lista-receitas li {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lista-receitas li:last-child {
    margin-bottom: 0;
}

.green-check {
    color: var(--success-color);
    font-weight: bold;
    background: rgba(39, 174, 96, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Bonus */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.bonus-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.bonus-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.gift-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.bonus-card p {
    font-weight: 600;
    font-size: 1.1rem;
}

.bonus-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.bonus-card .bonus-desc {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    text-align: center;
}

.bonus-card .bonus-desc:last-child {
    margin-bottom: 0;
}

/* Depoimentos */
.depoimentos {
    background-color: var(--bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.author {
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Objeções */
.objection-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.objection-item {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-left: 4px solid var(--secondary-color);
}

.objection-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.objection-item p {
    color: var(--text-light);
    padding-left: 2rem;
}

/* Garantia */
.garantia {
    background-color: var(--bg-alt);
}

.garantia-badge {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.garantia h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.garantia-text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.garantia-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.garantia-sub {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Oferta */
.oferta {
    padding: 6rem 0;
    background: linear-gradient(180deg, #18191b 0%, #111111 100%);
    color: #ffffff;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.5);
}

.oferta h2, .oferta h3, .oferta h4 {
    color: #ffffff;
}

.offer-image-wrapper {
    width: 100%;
    max-width: 380px;
    margin: 0 auto 3rem auto;
}

.offer-kit-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
}

.offer-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

.offer-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #f1f1f1;
}

.green-price {
    color: #00e676;
    font-weight: 900;
    font-size: 1.6rem;
    background: linear-gradient(to bottom, #00ff87, #00c660);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.local-currency {
    font-size: 1rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
    font-weight: 500;
}

.offer-access {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: #ffffff;
    line-height: 1.4;
}

.gold-text {
    color: #f3c276;
    font-weight: 800;
    font-size: 1.8rem;
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 1px;
}

.offer-list {
    max-width: 550px;
    margin: 0 auto 3rem auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.offer-list li {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #e4e4e4;
    font-weight: 400;
    line-height: 1.4;
}

.offer-list li.mt-separator {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dashed rgba(255,255,255,0.1);
}

.green-check-icon {
    background: rgba(0, 230, 118, 0.15);
    color: #00e676;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.gift-icon-small, .lock-icon, .phone-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.offer-urgency {
    margin-bottom: 2.5rem;
}

.countdown-title {
    color: #e6dac3;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.time-block-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.time-block {
    background: linear-gradient(145deg, #2a1a10, #140d08);
    border: 2px solid #e1a624;
    border-radius: 12px;
    padding: 1.2rem 1.2rem;
    box-shadow: 0 8px 25px rgba(225, 166, 36, 0.15), inset 0 2px 10px rgba(0,0,0,0.8);
    min-width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.time-block span {
    color: #f7e9c8;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
    text-shadow: 0 0 15px rgba(247, 233, 200, 0.4);
    font-variant-numeric: tabular-nums;
}

.time-colon {
    color: #e6dac3;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-top: 1.2rem;
    text-shadow: 0 0 10px rgba(230, 218, 195, 0.4);
    animation: blink 1s infinite alternate;
}

.time-label {
    color: #e1a624;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes blink {
    0% { opacity: 1; }
    100% { opacity: 0.4; }
}

.green-cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #1ce854 0%, #00b031 100%);
    color: white;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 210, 0, 0.3), inset 0 2px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    max-width: 500px;
    letter-spacing: 1px;
}

.green-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 210, 0, 0.4), inset 0 2px 0 rgba(255,255,255,0.4);
    color: white;
}

.green-cta-button.pulse {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 210, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 0, 0);
    }
}

.delivery-info {
    margin-top: 2rem;
    font-size: 1.05rem;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.inbox-icon {
    font-size: 1.3rem;
}

/* FAQ Accordion */
.faq {
    background-color: var(--bg-alt);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #fdfdfd;
}

.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.accordion-content p {
    padding: 0.5rem 2rem;
    color: var(--text-light);
}

.accordion-content p:first-child {
    padding-top: 1rem;
}

.accordion-content p:last-child,
.accordion-content .simple-list {
    padding-bottom: 2rem;
}

.accordion-content .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.simple-list {
    list-style: none;
    padding: 0.5rem 2rem;
    color: var(--text-light);
}

.simple-list li {
    margin-bottom: 0.5rem;
}

.cta-final {
    margin-top: 4rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-kit-wrapper {
        margin: 1.5rem auto;
        max-width: 320px; /* Tamaño máximo proporcional para móvil */
        width: 100%;
    }
    
    .hero-highlight {
        border-left: none;
        border-top: 4px solid var(--primary-color);
        border-radius: var(--border-radius);
    }
    
    .highlight-title {
        font-size: 2.5rem;
    }
    
    .cta-button.pulse {
        font-size: 1.1rem;
        padding: 20px;
    }

    /* Oferta Mobile Adjustments */
    .oferta {
        padding: 4rem 0;
    }

    .offer-image-wrapper {
        max-width: 300px;
        width: 100%;
        margin-bottom: 2rem;
    }

    .offer-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .offer-subtitle {
        font-size: 1.2rem;
    }

    .offer-access {
        font-size: 1.3rem;
    }

    .gold-text {
        font-size: 1.5rem;
    }

    .offer-list {
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .offer-list li {
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .limited-offer {
        font-size: 2rem;
    }

    .green-cta-button {
        font-size: 1.15rem;
        padding: 18px 24px;
        width: 100%;
    }
}
