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

:root {
    /* Cores principais */
    --background: hsl(220, 5%, 98%);
    --foreground: hsl(220, 10%, 15%);
    --border: hsl(220, 8%, 88%);
    --card: hsl(220, 6%, 96%);
    --card-foreground: hsl(220, 10%, 15%);
    --card-border: hsl(220, 8%, 90%);
    --muted: hsl(220, 12%, 90%);
    --muted-foreground: hsl(220, 10%, 40%);
    
    /* Cores de marca */
    --primary: hsl(180, 45%, 42%);
    --primary-foreground: hsl(180, 45%, 98%);
    --teal: hsl(180, 45%, 42%);
    --teal-foreground: hsl(180, 45%, 98%);
    --coral: hsl(15, 75%, 58%);
    --coral-foreground: hsl(0, 0%, 100%);
    --amber: hsl(40, 85%, 65%);
    --amber-foreground: hsl(40, 85%, 15%);
    --success: hsl(150, 50%, 45%);
    
    /* Tipografia */
    --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Espaçamento */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border radius */
    --radius-sm: 0.1875rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5625rem;
    --radius-xl: 0.75rem;
    
    /* Sombras */
    --shadow-sm: 0px 2px 4px -1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.08);
    --shadow-md: 0px 6px 12px -2px rgba(0, 0, 0, 0.10), 0px 3px 7px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0px 10px 20px -5px rgba(0, 0, 0, 0.12), 0px 8px 12px -6px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0px 20px 30px -10px rgba(0, 0, 0, 0.15), 0px 12px 20px -8px rgba(0, 0, 0, 0.10);
    --shadow-2xl: 0px 25px 50px -12px rgba(0, 0, 0, 0.20);
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Seções */
.section {
    padding: 4rem 0;
}

.section-alt {
    background-color: hsla(220, 12%, 90%, 0.3);
}

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

.section-subtitle {
    font-size: 1.125rem;
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 3rem;
}

/* Cards */
.card {
    background-color: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

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

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-lg {
    min-height: 2.5rem;
    padding: 0.5rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-primary-coral {
    background-color: var(--coral);
    color: var(--coral-foreground);
    border-color: var(--coral);
}

.btn-primary-coral:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-outline {
    background-color: hsl(220, 8%, 92%);  /* Cinza claro suave */
    color: hsl(220, 10%, 25%);             /* Texto escuro */
    border: 2px solid hsl(180, 45%, 42%);  /* Borda teal (cor da marca) */
}

.btn-outline:hover {
    background-color: hsl(220, 8%, 88%);  /* Cinza um pouco mais escuro */
    border-color: hsl(180, 45%, 38%);     /* Teal um pouco mais escuro */
}

/* Notificação de Vendas */
.sales-notification {
    position: fixed;
    right: 1rem;
    top: 1rem;
    z-index: 1000;
    width: 320px;
    background-color: var(--card);
    border: 1px solid var(--success);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-2xl);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.5s ease;
}

.sales-notification.visible {
    transform: translateX(0);
    opacity: 1;
}

.notification-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

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

.notification-text {
    flex: 1;
}

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

.notification-name {
    font-weight: 600;
    color: var(--foreground);
}

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

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

.notification-plan span {
    font-weight: 600;
    color: var(--foreground);
}

.notification-time {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--teal), var(--primary));
    padding: 5rem 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.hero-grid {
    position: relative;
    display: grid;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Target Audience Section */
.audience-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.audience-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--teal);
    color: var(--teal-foreground);
    flex-shrink: 0;
}

.check-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

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

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

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.benefit-description {
    line-height: 1.75;
    color: var(--muted-foreground);
}

/* Activities Section */
.activities-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.activity-card {
    overflow: hidden;
}

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

.activity-icon {
    width: 4rem;
    height: 4rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.activity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.activity-description {
    line-height: 1.75;
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card-popular {
    transform: scale(1.05);
    border: 2px solid var(--coral);
    background: linear-gradient(135deg, var(--card), hsla(15, 75%, 58%, 0.05));
    box-shadow: var(--shadow-2xl);
}

.popular-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--coral);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-lg);
}

.popular-icon {
    width: 1rem;
    height: 1rem;
}

.pricing-content {
    padding: 2rem;
}

.pricing-content-premium {
    padding-top: 4rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

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

.pricing-price-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.pricing-original-price {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
}

.pricing-discount-badge {
    background-color: var(--amber);
    color: var(--amber-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.pricing-amount {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--foreground);
}

.pricing-period {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.pricing-features {
    background-color: hsla(220, 12%, 90%, 0.5);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-features-premium {
    background-color: hsla(220, 6%, 96%, 0.5);
}

.features-label {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: var(--teal);
    color: white;
    flex-shrink: 0;
}

.feature-check-premium {
    background-color: var(--coral);
}

.feature-check svg {
    width: 1rem;
    height: 1rem;
}

.feature-item span {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--foreground);
}

.pricing-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.avatars {
    display: flex;
    margin-left: -0.5rem;
}

.avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: hsla(180, 45%, 42%, 0.2);
    border: 2px solid var(--card);
    margin-left: -0.5rem;
}

.avatar:nth-child(2) {
    background-color: hsla(15, 75%, 58%, 0.2);
}

.avatar:nth-child(3) {
    background-color: hsla(40, 85%, 65%, 0.2);
}

.social-proof p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.social-proof strong {
    color: var(--foreground);
}

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

.testimonial-card {
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--amber);
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.75;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--foreground);
}

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

/* Social Proof Section */
.social-proof-section {
    background-color: var(--primary);
    padding: 4rem 0;
}

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

.stat-card {
    background-color: hsla(180, 45%, 98%, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid hsla(180, 45%, 98%, 0.2);
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    line-height: 1.75;
    color: hsla(180, 45%, 98%, 0.8);
}

/* Urgency Section */
.urgency-card {
    overflow: hidden;
    border: 2px solid var(--amber);
    background-color: hsla(40, 85%, 65%, 0.05);
    padding: 2rem;
}

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

.urgency-icon {
    width: 2rem;
    height: 2rem;
    color: var(--amber);
}

.urgency-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--foreground);
}

.urgency-message {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.urgency-price {
    text-align: center;
    margin-bottom: 2rem;
}

.urgency-price-label {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.urgency-price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--foreground);
}

.urgency-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.urgency-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
}

.check {
    color: var(--success);
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background-color: hsla(220, 12%, 90%, 0.3);
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

/* Final CTA Section */
.final-cta-card {
    background: linear-gradient(135deg, var(--teal), var(--primary));
    text-align: center;
    padding: 3rem 2rem;
}

.guarantee-icon {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
}

.final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta-guarantee {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    background-color: hsla(220, 12%, 90%, 0.3);
    padding: 2rem 0;
    text-align: center;
}

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

/* Media Queries */
@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card-popular {
        transform: scale(1.1);
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-section {
        padding: 8rem 0;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}
