/* =====================================================
   LAROUSSE DOS PÃES — UPSELL PAGE STYLESHEET
   Style System: Warm, Premium & High-Converting
   ===================================================== */

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

/* ---- VARIABLES & SYSTEM ---- */
:root {
    --bg-cream: #FFFDF5;
    --bg-dark: #0A0606;       /* Deep charcoal-black from product */
    --bg-card: #FFFFFF;
    
    --primary: #FF4600;       /* Vibrant orange-red from product */
    --primary-light: #FF7033;
    --primary-dark: #CC3800;
    
    --accent: #EFC60A;        /* Gold yellow from product */
    --accent-dark: #C69E00;
    
    --blue-highlight: #008CBE; /* Brand blue highlight */
    
    --success: #25D366;       /* Checkout green */
    --success-dark: #1E9E4C;
    
    --text-dark: #171717;
    --text-mid: #555555;
    --text-light: #888888;
    --text-white: #FFFFFF;
    
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(10, 6, 6, 0.08);
    --shadow-lg: 0 20px 50px rgba(10, 6, 6, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    --radius-full: 100px;
    
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Sora', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

/* ---- KEY ANIMATIONS ---- */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-3deg); }
    20%, 40%, 60%, 80% { transform: rotate(3deg); }
}

@keyframes progress-glow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ---- SECTIONS & LAYOUT ---- */
.stop-header {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 14px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.progress-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-highlight);
}

.progress-bar {
    width: 250px;
    height: 10px;
    background-color: #222;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.progress-fill {
    width: 90%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--blue-highlight) 50%, var(--primary) 100%);
    background-size: 200% auto;
    animation: progress-glow 2s linear infinite;
    border-radius: 5px;
}

/* HERO SECTION */
.hero-section {
    padding: 60px 0 40px;
    background: radial-gradient(circle at top, #FFFDF0 0%, var(--bg-cream) 100%);
}

.alert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(204, 34, 0, 0.08);
    border: 1px solid rgba(204, 34, 0, 0.2);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.alert-badge i {
    animation: shake 2s infinite;
}

.main-headline {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    line-height: 1.2;
    color: var(--bg-dark);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.main-headline span.highlight {
    color: var(--primary);
    position: relative;
}

.highlight-blue {
    color: var(--blue-highlight) !important;
}

.highlight-gold {
    color: var(--accent) !important;
}

.sub-headline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-mid);
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.sub-headline strong {
    color: var(--bg-dark);
}

/* MOCKUP & OFFER WRAPPER */
.hero-visual-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-bottom: 50px;
    border: 1px solid rgba(15, 8, 10, 0.04);
}

.visual-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.mockup-container {
    position: relative;
}

.mockup-img {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.mockup-img:hover {
    transform: translateY(-5px);
}

.value-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 0.95rem;
    padding: 12px 18px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    transform: rotate(12deg);
    border: 3px solid #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    line-height: 1;
}

.value-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    font-size: 1.05rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-list li i {
    color: var(--success);
    font-size: 1.3rem;
    margin-top: 2px;
}

.benefit-list li strong {
    color: var(--bg-dark);
    display: block;
    margin-bottom: 2px;
}

.benefit-list li span {
    color: var(--text-mid);
    font-size: 0.95rem;
}

/* BREADS GALLERY */
.gallery-section {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0;
}

.gallery-section .section-title {
    color: var(--text-white);
}

.gallery-section .section-subtitle {
    color: #AAA;
    max-width: 600px;
    margin: -15px auto 50px;
    font-size: 1.05rem;
}

.section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.4rem, 4vw, 2.1rem);
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--bg-dark);
    letter-spacing: -0.5px;
}

.bread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.bread-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.bread-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.bread-img-box {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #111;
}

.bread-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bread-card:hover .bread-img-box img {
    transform: scale(1.08);
}

.bread-title {
    padding: 20px;
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--blue-highlight);
}

/* INDEX ACCORDION */
.index-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.index-accordion {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(15, 8, 10, 0.05);
    overflow: hidden;
}

.accordion-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #FFFDF8;
    border-bottom: 1px solid #F5F1E5;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #FFF9E9;
}

.accordion-header h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-dark);
    display: flex;
    align-items: center;
    gap: 12px;
}

.accordion-header h3 i {
    color: var(--primary);
}

.accordion-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.index-accordion.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
}

.accordion-content-inner {
    text-align: left;
    font-size: 0.95rem;
    color: var(--text-mid);
}

.accordion-content-visible {
    background: var(--bg-card);
    padding: 30px;
    text-align: left;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.accordion-content-inner h4 {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--bg-dark);
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--blue-highlight);
    padding-bottom: 6px;
    text-transform: uppercase;
}

.accordion-content-inner h4:first-of-type {
    margin-top: 0;
}

.accordion-content-inner p {
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

/* BONUSES SECTION */
.bonuses-section {
    padding: 80px 0;
    background-color: #FDF9F2;
    border-top: 1px solid #F5EFE0;
    border-bottom: 1px solid #F5EFE0;
}

.bonuses-subtitle {
    color: var(--blue-highlight);
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.bonus-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.bonus-card img {
    border-radius: var(--radius-sm);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
    margin-bottom: 18px;
    width: 100%;
    aspect-ratio: 5/8;
    object-fit: cover;
}

.bonus-label {
    background-color: var(--primary);
    color: var(--text-white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bonus-name {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--bg-dark);
    line-height: 1.3;
    text-transform: uppercase;
}

/* PRICING & CTA SECTION */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-white);
    position: relative;
}

.pricing-card {
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-highlight) 0%, var(--primary) 100%);
    border-radius: 0 0 10px 10px;
}

.urgency-counter {
    background: rgba(204, 34, 0, 0.15);
    border: 1px dashed var(--primary);
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
}

.price-title {
    font-family: var(--font-head);
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.price-anchor {
    font-size: 1.1rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-box {
    margin: 15px 0 25px;
}

.price-value {
    font-family: var(--font-head);
    font-size: clamp(3rem, 10vw, 4.5rem);
    font-weight: 900;
    color: var(--blue-highlight);
    line-height: 1;
}

.price-value span {
    font-size: 1.8rem;
    font-weight: 800;
    vertical-align: super;
}

.price-installments {
    font-size: 1.15rem;
    color: var(--text-white);
    font-weight: 600;
    margin-top: 5px;
}

.price-sub {
    font-size: 0.85rem;
    color: #AAA;
    margin-bottom: 30px;
}

/* ACTIONS */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-accept {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
    color: var(--text-white);
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.1rem, 3.5vw, 1.4rem);
    padding: 22px 30px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.btn-decline {
    font-size: 0.9rem;
    color: #777;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: color 0.3s;
    max-width: 480px;
    line-height: 1.4;
}

.btn-decline:hover {
    color: var(--primary-light);
}

/* TRUST BADGES */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badges i {
    color: var(--success);
    font-size: 1rem;
}

/* WARRANTY */
.warranty-container {
    max-width: 650px;
    margin: 50px auto 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.warranty-img {
    width: 80px;
    flex-shrink: 0;
}

.warranty-text h4 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--bg-dark);
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.warranty-text p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.4;
}

/* FOOTER */
footer {
    background-color: #080405;
    color: #555;
    padding: 30px 20px;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .visual-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-visual-card {
        padding: 30px 20px;
    }
    
    .benefit-list li {
        justify-content: center;
        font-size: 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card {
        padding: 40px 20px;
    }
    
    .warranty-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}
