/* DESIGN TOKENS */
:root {
    --primary-color: #ff6b35; /* Laranja vibrante inspirado na camiseta da imagem */
    --primary-light: #ff8c61;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1EBE5A;
    --background: #fffafa; /* Fundo muito leve, toque quente para combinar */
    --card-bg: #ffffff;
    --text-main: #2b2b2b;
    --text-muted: #5e5e5e;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(255, 107, 53, 0.12);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: #f0f2f5; /* Fundo externo para telas maiores */
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* MOBILE-FIRST WRAPPER (App-like behavior) */
.page-wrapper {
    max-width: 480px; 
    margin: 0 auto;
    background-color: var(--background);
    min-height: 100vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    overflow: hidden;
    position: relative;
}

/* HEADER */
.header {
    padding: 24px 20px;
    text-align: center;
    background-color: var(--background);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.logo {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1;
}
.logo span {
    color: var(--text-main);
    font-weight: 800;
}

/* HERO SECTION */
.hero {
    padding: 32px 20px 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--background) 0%, #fff2ec 100%);
}

.badge {
    display: inline-block;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero h1 {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.hero h1 span {
    color: var(--whatsapp-green);
}

.hero > .hero-content > p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* HERO IMAGE & MICROELEMENTS */
.hero-image-wrapper {
    position: relative;
    max-width: 320px;
    margin: 0 auto 36px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
    object-fit: cover;
    border: 4px solid white;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 8px 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    color: var(--text-main);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
    border: 1px solid #f0f0f0;
}

.badge-1 { top: 15%; left: -15px; animation-delay: 0s; }
.badge-2 { bottom: 15%; right: -15px; animation-delay: 1.5s; }
.badge-3 { top: 60%; left: -25px; animation-delay: 0.7s; }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* CTA BUTTONS */
.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 18px 24px;
    border-radius: var(--border-radius-lg);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

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

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.micro-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 14px;
    font-weight: 500;
}

/* SOCIAL PROOF AVATARS */
.user-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.avatars {
    display: flex;
    margin-bottom: 12px;
}

.avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid #fff2ec;
    margin-left: -12px;
}
.avatars img:first-child { margin-left: 0; }

.user-proof span {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.user-proof strong {
    color: var(--text-main);
    font-weight: 700;
}

/* SECTIONS BASE */
section {
    padding: 56px 20px;
}

section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* BENEFITS */
.benefits {
    background-color: var(--card-bg);
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    background-color: #fffaf7;
    border: 1px solid #ffe9de;
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.benefit-card .icon {
    font-size: 1.8rem;
    background: white;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.08);
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* HOW IT WORKS */
.how-it-works {
    background-color: #fcfcfc;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    padding-left: 10px;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 33px;
    width: 2px;
    background-color: #ffe9de;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    padding-left: 68px;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    left: 0;
    top: -4px;
    width: 48px;
    height: 48px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border: 3px solid var(--primary-color);
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.step p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* SOCIAL PROOF LIST */
.social-proof {
    background-color: white;
}

.proof-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proof-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
    background: #fbfbfb;
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid #f0f0f0;
}

.proof-list .check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: rgba(37, 211, 102, 0.15);
    color: var(--whatsapp-green);
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* FINAL CTA */
.final-cta {
    background: linear-gradient(135deg, #fff2ec 0%, #ffe9de 100%);
    text-align: center;
    border-radius: 32px 32px 0 0;
    padding-bottom: 64px;
}

.final-cta h2 {
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

/* FOOTER */
footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #ffdacc;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    text-decoration: underline;
}

footer p {
    color: #999;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #666;
    margin-top: 24px;
    line-height: 1.4;
}

/* RESPONSIVE Adjustments for larger screens (within wrapper) */
@media (min-width: 480px) {
    .page-wrapper {
        margin: 20px auto;
        border-radius: 20px;
    }
    .hero h1 { font-size: 2.1rem; }
    .hero-image-wrapper { max-width: 360px; }
}
