/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FF6B35;
    --color-primary-dark: #E85A2B;
    --color-primary-light: #FF8C5A;
    --color-accent: #FF4500;
    --color-text: #FFFFFF;
    --color-text-light: #E0E0E0;
    --color-text-muted: #B0B0B0;
    --color-bg: #0A0A0A;
    --color-bg-dark: #000000;
    --color-bg-light: #1A1A1A;
    --color-border: #2A2A2A;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --max-width: 1400px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Barra Superior */
.top-bar {
    background: #000000;
    border-bottom: 2px solid rgba(255, 107, 53, 0.5);
    padding: 1rem 0;
    text-align: center;
    position: relative;
    z-index: 100;
}

.top-bar-text {
    font-size: 1rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    padding: 0 var(--spacing-md);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Tipografia */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    color: var(--color-text-light);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* Botões */
.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.5);
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-hero {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
    margin-top: var(--spacing-md);
    width: 100%;
    max-width: 600px;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

/* SEÇÃO 1 — HERO */
.hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1A0A00 30%, #2D0F00 60%, #000000 100%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 69, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0.5rem;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
    padding-right: 0.5rem;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-headline {
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
    max-width: 95%;
    line-height: 1.6;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.badge-item {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.email-icon-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E0E0E0'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

.canva-icon-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #00C4CC 0%, #7B00FF 100%);
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    vertical-align: middle;
    flex-shrink: 0;
}

.canva-icon-inline::before {
    content: 'C';
}

/* Hero Image */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: fadeInRight 1s ease-out;
    padding-left: 0;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: brightness(1.05) contrast(1.1);
}

.hero-glow {
    display: none;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* SEÇÃO 2 — VEJA COMO É O MATERIAL */
.material-showcase {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
    position: relative;
}

.material-showcase-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.material-showcase-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.material-showcase-title strong {
    color: #8B4513;
    font-weight: 800;
}

.material-showcase-carousel-fullwidth {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: var(--spacing-xl);
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 0;
    margin: 0;
}

.material-showcase-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    align-items: start;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 40vh;
    max-height: 420px;
    overflow: hidden;
    background: #F8F8F8;
    cursor: grab;
    padding: 0;
    margin: 0;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    will-change: transform;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    pointer-events: none;
}

.carousel-slide {
    flex: 0 0 auto;
    width: calc((100% - 2.25rem) / 4);
    min-width: calc((100% - 2.25rem) / 4);
    height: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-sizing: border-box;
    pointer-events: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    user-select: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.material-showcase-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.checklist-card {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 16px;
    padding: var(--spacing-md);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.checklist-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 40px;
    height: 8px;
    background: #E5E5E5;
    border-radius: 4px 4px 0 0;
}

.checklist-header-card {
    border-bottom: 2px solid #E5E5E5;
    padding-bottom: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.checklist-title-card {
    font-size: 1rem;
    font-weight: 700;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checklist-items-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.checklist-item-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: #333333;
    font-weight: 500;
}

.check-mark {
    color: #22C55E;
    font-weight: 700;
    font-size: 1rem;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-button {
    width: 100%;
    padding: 0.875rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.checklist-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.material-showcase-footer {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.material-showcase-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.material-showcase-subtitle strong {
    color: #8B4513;
}

.material-showcase-description {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* SEÇÃO 3 — DEPOIMENTOS */
.testimonials {
    padding: var(--spacing-sm) 0 var(--spacing-xl) 0;
    background: #FFFFFF;
}

.testimonials-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.testimonials-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.testimonials-subtitle {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* SEÇÃO 4 — O PROBLEMA */
.problem {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg));
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text);
}

.problem-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.problem-column {
    padding: var(--spacing-md);
    border-radius: 12px;
}

.problem-left {
    background: rgba(255, 69, 0, 0.1);
    border: 2px solid rgba(255, 69, 0, 0.2);
    backdrop-filter: blur(10px);
}

.problem-right {
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.problem-column h3 {
    margin-bottom: var(--spacing-md);
    font-size: 1.5rem;
    color: var(--color-text);
}

.problem-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.problem-list li {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    padding-left: var(--spacing-sm);
    color: var(--color-text-light);
}

.illustration {
    height: auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-md);
    overflow: hidden;
    border-radius: 8px;
}

.problem-image {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.burger-chaos,
.burger-order {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.burger-item {
    font-size: 3rem;
    transition: transform 0.3s ease;
}

.burger-item.misplaced {
    transform: rotate(15deg) translateY(10px);
    opacity: 0.7;
}

.burger-item.aligned {
    transform: rotate(0deg);
}

/* SEÇÃO 4.5 — ANTES E DEPOIS */
.before-after {
    padding: var(--spacing-xl) 0 0 0;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-light));
    position: relative;
}

.before-after-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.before-after-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.before-after-title strong {
    color: var(--color-primary);
}

.before-after-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.before-after-image-wrapper {
    width: 100%;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .before-after-image-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw !important;
        margin-right: -50vw !important;
    }
}

.before-after-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.before-after-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
}

@media (max-width: 968px) {
    .before-after {
        padding: var(--spacing-lg) 0 0 0;
    }
    
    .before-after-header {
        margin-bottom: var(--spacing-md);
    }
    
    .before-after-image-wrapper {
        border-radius: 16px;
        padding: 0;
        min-height: 350px;
        max-height: 350px;
    }
    
    .before-after-image {
        min-height: 350px;
        max-height: 350px;
    }
}

@media (max-width: 640px) {
    .before-after {
        padding: var(--spacing-md) 0 0 0;
    }
    
    .before-after-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .before-after-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .before-after-image-wrapper {
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        max-width: 100%;
        border-radius: 12px;
        padding: 0;
        min-height: auto;
        height: auto;
    }
    
    .before-after-image {
        width: 100%;
        height: auto;
        min-height: auto;
        max-height: none;
        object-fit: contain;
    }
}

/* SEÇÃO 5 — COMO FUNCIONA */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-light));
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.step-card p {
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
}

.step-visual {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.mockup-canva,
.mockup-printed,
.mockup-station {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.canva-toolbar {
    height: 30%;
    background: rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.canva-content {
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
}

.printed-guide {
    width: 80%;
    height: 80%;
    background: white;
    margin: 10% auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.station-counter {
    width: 100%;
    height: 40%;
    background: rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.station-items {
    height: 60%;
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

/* SEÇÃO 4 — O QUE VOCÊ RECEBE */
.what-you-get {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg-light), var(--color-bg));
    position: relative;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.material-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.material-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.2);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
}

.material-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.material-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.material-card p {
    font-size: 1rem;
    color: var(--color-text-light);
}

.material-icon {
    filter: brightness(1.2);
}

/* SEÇÃO 5 — BENEFÍCIOS */
.benefits {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg), var(--color-bg-light));
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-block {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.benefit-block h3 {
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-size: 1.5rem;
}

.benefit-block ul {
    list-style: none;
}

.benefit-block li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-light);
    font-size: 1.125rem;
}

.benefit-block li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* SEÇÃO 6 — OFERTA */
/* SEÇÃO 7 — COMO APLICAR O PADRÃO */
.how-to-apply {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
}

.how-to-apply-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.how-to-apply-title strong {
    color: #8B4513;
    font-weight: 800;
}

.how-to-apply-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #666666;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.apply-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

.apply-step {
    text-align: center;
    padding: var(--spacing-md);
}

.apply-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #8B4513;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto var(--spacing-sm);
}

.apply-step-label {
    display: inline-block;
    background: #8B4513;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.apply-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.apply-step-description {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
}

/* SEÇÃO 8 — IDEAL PARA VOCÊ */
.ideal-for-you {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg-light), var(--color-bg-dark));
    position: relative;
}

.ideal-for-you-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ideal-for-you-title span {
    color: var(--color-text);
}

.ideal-for-you-title strong {
    color: var(--color-primary);
    font-weight: 800;
}

.ideal-for-you-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: 0 auto;
}

.ideal-for-you-item {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.ideal-for-you-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.ideal-checkmark {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.ideal-text {
    color: var(--color-text-light);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
}

/* SEÇÃO 8 — BÔNUS */
.bonus {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(to bottom, var(--color-bg-dark), var(--color-bg-light));
    position: relative;
}

.bonus-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.bonus-urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B35 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    animation: pulse-urgency 2s ease-in-out infinite;
}

.bonus-urgency-icon {
    font-size: 1rem;
}

.bonus-urgency-text {
    white-space: nowrap;
}

@keyframes pulse-urgency {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
        transform: scale(1.02);
    }
}

.bonus-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-sm);
}

.bonus-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: var(--spacing-lg);
    border: 2px solid rgba(255, 107, 53, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.bonus-urgency-label {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C00 100%);
    color: #FFFFFF;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.bonus-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.bonus-image-wrapper {
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.bonus-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.bonus-content {
    padding-top: var(--spacing-sm);
}

.bonus-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.bonus-item-description {
    font-size: 1.125rem;
    color: var(--color-primary);
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.bonus-item-text {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.bonus-price-old {
    font-size: 1rem;
    color: #FF4444;
    text-decoration: line-through;
    font-weight: 600;
}

.bonus-price-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: #4CAF50;
    text-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.offer {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
    position: relative;
}

.offer-header-section {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden;
}

.offer-last-chance-banner {
    background: linear-gradient(135deg, #DC3545 0%, #C82333 100%);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    overflow: hidden;
}

.offer-clock-icon {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.offer-last-chance-text {
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
    max-width: calc(100% - 3rem);
}

.offer-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

.offer-title-black {
    color: #1A1A1A;
}

.offer-title-red {
    color: #DC3545;
}

.offer-title-divider {
    width: 100px;
    height: 2px;
    background: #1A1A1A;
    margin: var(--spacing-sm) auto 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.offer-wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid #E5E5E5;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.offer-wrapper-basic {
    border: 1px solid #CCCCCC;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background: #FAFAFA;
}

.offer-wrapper-featured {
    border: 3px solid #FF6B35;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.offer-plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-plan-title-basic {
    color: #666666;
    font-size: 1.25rem;
}

.offer-plan-title-featured {
    color: #FF6B35;
}

.offer-features-list-basic {
    margin-bottom: var(--spacing-sm);
}

.offer-pricing-basic {
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-xs) 0;
}

.btn-offer-basic {
    background: #666666;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: none;
}

.btn-offer-basic:hover {
    background: #555555;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.offer-feature-item {
    font-weight: 400;
}

.offer-badge-best-seller {
    background: #90EE90;
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.offer-badge-icon {
    font-size: 1rem;
    color: #1A1A1A;
}

.offer-badge-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A1A1A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.offer-badge-last-chance {
    background: #DC3545;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.offer-badge-clock {
    font-size: 1rem;
    color: #FFFFFF;
}

.offer-badge-text-white {
    font-size: 0.875rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 1;
    min-width: 0;
}

.offer-bonus-included {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: var(--spacing-sm);
}

.offer-image-container {
    width: 100%;
    margin-bottom: var(--spacing-sm);
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.offer-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.offer-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: var(--spacing-md);
}

.offer-features-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #E5E5E5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    color: #1A1A1A;
}

.offer-features-list li .email-icon-inline {
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231A1A1A'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.offer-features-list li:last-child {
    border-bottom: none;
}

.offer-feature-main {
    font-weight: 600;
}

.offer-checkmark {
    color: #4CAF50;
    font-size: 1.25rem;
    font-weight: bold;
}

.offer-bonus-icon {
    font-size: 1rem;
}

.offer-pricing {
    text-align: center;
    margin: var(--spacing-md) 0;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}

.offer-price-old {
    margin-bottom: var(--spacing-sm);
}

.offer-price-old-text {
    font-size: 1rem;
    color: #666666;
}

.offer-price-old-amount {
    text-decoration: line-through;
    color: #FF4444;
    font-weight: 600;
}

.offer-price-new {
    margin: 0.5rem 0;
}

.offer-price-new-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #4CAF50;
    line-height: 1;
}

.offer-installment {
    margin-top: 0.5rem;
    text-align: center;
}

.offer-installment-text {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
}

.offer-savings {
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #1A1A1A;
}

.offer-savings-bullet {
    color: #4CAF50;
    font-size: 1.5rem;
    font-weight: bold;
}

.offer-savings strong {
    color: #1A1A1A;
    font-weight: 700;
}

.btn-offer-complete {
    width: 100%;
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--spacing-md);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    animation: pulse-button 1.5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    pointer-events: auto;
    z-index: 2;
}

.btn-offer-complete::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    pointer-events: none;
    z-index: 1;
}

.btn-offer-complete:hover::before {
    left: 100%;
}

.btn-offer-complete:hover {
    background: #45a049;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.4);
    animation: none;
}

.btn-offer-complete:active {
    transform: translateY(0) scale(0.98);
}

@keyframes pulse-button {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 8px 40px rgba(76, 175, 80, 0.7);
        transform: scale(1.03);
    }
    75% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6);
        transform: scale(1.02);
    }
}

.offer-better-plan-indicator {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    background: #FFE5E5;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
    border: 1px solid #FF6B6B;
}

.offer-attention-text {
    font-size: 0.875rem;
    color: #DC3545;
    line-height: 1.3;
}

.offer-attention-bold {
    font-weight: 700;
    color: #DC3545;
}

.offer-attention-highlight {
    font-weight: 700;
    color: #DC3545;
    text-decoration: underline;
    text-decoration-color: #DC3545;
    text-underline-offset: 2px;
}

.offer-arrow-down {
    font-size: 1.25rem;
    color: #DC3545;
    animation: bounce-arrow 1.5s ease-in-out infinite;
    display: block;
    margin-top: 0.25rem;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

.offer-seal-container {
    text-align: center;
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
}

.offer-seal {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* CTAs ESTRATÉGICOS */
.cta-section {
    padding: var(--spacing-md) 0;
    background: transparent;
    position: relative;
}

/* CTA após before-after (veja diferença na prática) */
.before-after + .cta-section {
    background: var(--color-bg-light);
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-xl);
}

/* CTA após testimonials */
.testimonials + .cta-section {
    background: #FFFFFF;
}

/* CTA após bonus */
.bonus + .cta-section {
    background: linear-gradient(to bottom, var(--color-bg-light), var(--color-bg));
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-cta {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-cta 1.5s ease-in-out infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(76, 175, 80, 0.5);
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    animation: none;
}

.btn-cta:active {
    transform: translateY(-1px) scale(0.98);
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6);
        transform: scale(1.02);
    }
    50% {
        box-shadow: 0 8px 40px rgba(76, 175, 80, 0.7);
        transform: scale(1.03);
    }
    75% {
        box-shadow: 0 8px 35px rgba(76, 175, 80, 0.6);
        transform: scale(1.02);
    }
}

/* SEÇÃO 7 — GARANTIA */
.guarantee {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
    text-align: center;
    position: relative;
}

.guarantee-seal-container {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.guarantee-seal {
    max-width: 250px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.guarantee-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.guarantee-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #666666;
}

/* SEÇÃO 10 — PERGUNTAS FREQUENTES */
.faq {
    padding: var(--spacing-xl) 0;
    background: #FFFFFF;
    position: relative;
}

.faq-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: var(--spacing-xl);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    width: 100%;
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: var(--spacing-sm) 0;
    user-select: none;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-question.active {
    margin-bottom: var(--spacing-sm);
}

.faq-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    flex-shrink: 0;
    line-height: 1.4;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.5;
    flex: 1;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #1A1A1A;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1.4;
    width: 24px;
    text-align: center;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
    margin-bottom: var(--spacing-xs);
}

.faq-answer.active {
    max-height: 500px;
    padding: var(--spacing-sm) 0 var(--spacing-sm) calc(1.5rem + var(--spacing-sm));
}

.faq-answer p {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: #1A1A1A;
    font-weight: 700;
}

.faq-line {
    width: 100%;
    height: 1px;
    background: #E5E5E5;
    margin-top: var(--spacing-sm);
}

/* RODAPÉ */
.footer {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-xs);
}

.footer-subtext {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* Responsividade */
@media (max-width: 968px) {
    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
    
    .plans-grid {
        width: 100%;
        box-sizing: border-box;
    }
    
    .offer-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .offer-badge-last-chance {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .offer-last-chance-banner {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 1rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .offer-last-chance-text {
        font-size: 0.7rem;
        max-width: calc(100% - 2.5rem);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-visual {
        order: -1;
        margin-bottom: 0.5rem;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subheadline {
        font-size: 1.125rem;
    }

    .btn-hero {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }

    .hero-badges {
        justify-content: center;
    }

    .problem-comparison {
        grid-template-columns: 1fr;
    }
    
    .problem-image {
        max-height: 250px;
    }
    
    .illustration {
        min-height: 200px;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .apply-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .ideal-for-you-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .bonus-urgency-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .bonus-urgency-label {
        font-size: 0.625rem;
        padding: 0.25rem 0.625rem;
        right: 10px;
        top: -8px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        width: 100%;
        box-sizing: border-box;
    }
    
    .offer-wrapper {
        max-width: 100%;
        width: 100%;
        padding: var(--spacing-md);
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .offer-badge-last-chance {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
    }
    
    .offer-badge-text-white {
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .offer-last-chance-text {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .offer-main-image {
        max-width: 100%;
    }
    
    .offer-price-new-amount {
        font-size: 2.5rem;
    }
    
    .offer-banner {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .offer-features-list li {
        font-size: 1.125rem;
    }
    
    .btn-offer-complete {
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
    }

    .material-showcase-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .carousel-container {
        max-width: 100%;
    }

    .carousel-wrapper {
        height: 45vh;
        max-height: 450px;
    }
    
    .carousel-slide {
        width: calc((100% - 0.75rem) / 2);
        min-width: calc((100% - 0.75rem) / 2);
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .apply-steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .apply-step-number {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .top-bar {
        padding: 0.875rem 0;
    }
    
    .top-bar-text {
        font-size: 0.875rem;
        padding: 0 var(--spacing-sm);
        line-height: 1.4;
    }

    .btn-primary {
        width: 100%;
        padding: 1rem;
    }

    .hero-subheadline {
        max-width: 100%;
    }
    
    .material-showcase-carousel-fullwidth {
        width: calc(100% + 2 * var(--spacing-sm)) !important;
        position: relative !important;
        left: calc(-1 * var(--spacing-sm)) !important;
        right: auto !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }
    
    .carousel-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .carousel-wrapper {
        height: 45vh;
        max-height: 380px;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .carousel-track {
        gap: 0.5rem;
        flex-wrap: nowrap;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .carousel-slide {
        width: calc(100% - 0.5rem) !important;
        min-width: calc(100% - 0.5rem) !important;
        max-width: calc(100% - 0.5rem) !important;
        flex-shrink: 0;
        padding: 0 !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
    }
    
    .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        padding: 0;
        margin: 0;
    }
    
    .problem-image {
        max-height: 200px;
    }
    
    .illustration {
        min-height: 150px;
    }
    
    .faq-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: var(--spacing-lg);
    }
    
    .faq-question-text {
        font-size: 1.125rem;
    }
    
    .faq-number {
        font-size: 1.25rem;
    }
    
    .faq-icon {
        font-size: 1.25rem;
        width: 20px;
    }
    
    .faq-answer.active {
        padding-left: calc(1.25rem + var(--spacing-sm));
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* Animações suaves */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-visual,
.step-card,
.material-card,
.benefit-block {
    animation: fadeInUp 0.6s ease-out;
}
