/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: hsl(165, 25%, 20%);
    background-color: hsl(0, 0%, 100%);
}

/* Design System Variables */
:root {
    --primary: hsl(165, 65%, 55%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(165, 55%, 85%);
    --primary-soft: hsl(165, 45%, 95%);
    
    --accent: hsl(330, 75%, 50%);
    --accent-foreground: hsl(0, 0%, 100%);
    --accent-hover: hsl(330, 75%, 40%);
    
    --purple: hsl(331, 74%, 60%);
    --purple-foreground: hsl(0, 0%, 100%);
    
    --foreground: hsl(165, 25%, 20%);
    --muted-foreground: hsl(165, 15%, 45%);
    --border: hsl(165, 20%, 90%);
    
    --shadow-soft: 0 4px 20px hsla(165, 35%, 55%, 0.08);
    --shadow-elevated: 0 10px 40px hsla(165, 35%, 45%, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary-soft) 0%, hsl(0, 0%, 100%) 100%);
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo {
    height: 5rem;
    width: auto;
}

.hero-content {
    max-width: 36rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.headline {
    font-size: 1.125rem;
    text-align: center;
    color: var(--foreground);
    line-height: 1.375;
}

.target-audience {
    font-size: 1.125rem;
    text-align: center;
    font-weight: bold;
    color: var(--purple);
}

.date-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary);
    font-size: 0.875rem;
}

.date-time-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon {
    width: 1.25rem;
    height: 1.25rem;
}

.separator {
    color: var(--muted-foreground);
}

.font-medium {
    font-weight: 500;
}

.price-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.old-price {
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

.new-price {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.exclusive-access {
    color: var(--accent);
    font-weight: bold;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button {
    width: 100%;
    background-color: var(--accent);
    color: var(--accent-foreground);
    padding: 1rem 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.bonus-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.bonus-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.icon-gift {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.bonus-title {
    font-weight: bold;
    color: var(--foreground);
    font-size: 0.75rem;
}

.bonus-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Authority Section */
.authority-section {
    padding: 4rem 0;
    background-color: hsl(0, 0%, 100%);
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: var(--foreground);
    margin-bottom: 3rem;
}

.authority-content {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.authority-photo-container {
    display: flex;
    justify-content: center;
}

.authority-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
}

.authority-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.authority-name {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--primary);
}

.authority-specialty {
    font-size: 1.125rem;
    color: var(--purple);
    font-weight: 600;
}

.authority-bio {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--foreground);
    line-height: 1.75;
}

.achievements-grid {
    display: grid;
    gap: 1.5rem;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.achievement-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.achievement-title {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.achievement-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.authority-quote {
    background: linear-gradient(135deg, var(--primary-soft) 0%, hsl(0, 0%, 100%) 100%);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
}

.authority-quote p {
    font-style: italic;
    color: var(--foreground);
    line-height: 1.75;
}

/* Objections Section */
.objections-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, hsl(0, 0%, 100%) 0%, var(--primary-soft) 100%);
}

.for-you-section {
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.objection-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
    border: 2px solid var(--accent);
}

.objection-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.objection-icon {
    width: 2rem;
    height: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.objection-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
}

.objection-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.objection-truth {
    font-weight: bold;
    color: var(--accent);
    font-size: 1.125rem;
}

.objection-text {
    color: var(--foreground);
    line-height: 1.75;
}

.highlight-pink {
    color: var(--purple);
    font-weight: bold;
}

.objection-quote {
    background: var(--primary-soft);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary);
    margin-top: 1rem;
}

.objection-quote p {
    font-style: italic;
    color: var(--foreground);
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.objection-author {
    font-weight: 600;
    color: var(--primary);
    font-style: normal;
}

/* Final CTA Section */
.final-cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-soft) 0%, hsl(0, 0%, 100%) 100%);
}

.final-cta-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-elevated);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.final-cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.final-cta-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--foreground);
}

.benefit-check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 3rem;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-name {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-tagline {
    color: var(--primary-light);
}

.footer-divider {
    width: 100%;
    max-width: 32rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: white;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.5;
    max-width: 48rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo {
        height: 10rem;
    }
    
    .logo-container {
        margin-bottom: 2rem;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .headline,
    .target-audience {
        font-size: 1.5rem;
        line-height: 1.625;
    }
    
    .date-time {
        font-size: 1rem;
    }
    
    .old-price {
        font-size: 1rem;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .exclusive-access {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1.125rem;
        padding: 1.5rem 3rem;
    }
    
    .bonus-title {
        font-size: 1rem;
    }
    
    .bonus-subtitle {
        font-size: 0.875rem;
    }
    
    .icon-gift {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .price-card {
        padding: 1.5rem;
    }
    
    .bonus-card {
        padding: 1.25rem;
    }
    
    .authority-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}