@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
    --bg-main: #E6E4DC;
    --text-main: #36352E;
    --accent: #8c7251;
    --border-elegant: rgba(166, 163, 152, 0.3);
    --dark-bg: #22211C;
    --light-bg-alt: #EFECE4;
    --green: #16a34a;
    --green-hover: #15803d;
    --white: #ffffff;
    --black: #000000;
}

.highlight-red {
    background-color: #ff4d4d;
    color: white;
    padding: 0 0.3rem;
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(255, 77, 77, 0.3);
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.hero h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.hero h1 span.italic {
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-style: italic;
    color: rgba(54, 53, 46, 0.8);
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-main);
    max-width: 850px;
    margin: 1.5rem auto 1.5rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.subheadline {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: rgba(54, 53, 46, 0.8);
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2.5rem;
    background-color: var(--green);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.2);
}

.btn:hover {
    background-color: var(--green-hover);
    transform: translateY(-2px);
}

.btn-price {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.125rem;
    opacity: 0.8;
    margin-left: 0.75rem;
}

/* Problems Section */
.problems {
    background-color: var(--dark-bg);
    color: #E6E4DC;
    padding: 6rem 1.5rem;
}

.problems h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

.problems-intro {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(230, 228, 220, 0.7);
    margin-bottom: 4rem;
    text-align: center;
}

.problem-card {
    background-color: var(--light-bg-alt);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(166, 163, 152, 0.2);
    color: var(--black);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.problem-card p {
    font-size: 1.125rem;
    letter-spacing: 0.025em;
    line-height: 1.6;
}

.problem-card .icon {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Solution / Schedule Section */
.schedule {
    background-color: var(--light-bg-alt);
    padding: 6rem 1.5rem;
    border-top: 1px solid var(--border-elegant);
}

.section-tag {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1rem;
}

.schedule-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.schedule-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.schedule-info {
    color: rgba(54, 53, 46, 0.8);
    margin-bottom: 2.5rem;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 1.25rem;
    display: inline-block;
    text-align: left;
    border: 1px solid rgba(166, 163, 152, 0.3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.info-box p.title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(166, 163, 152, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

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

.info-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-list li .check {
    color: var(--accent);
    flex-shrink: 0;
}

.schedule-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-style: italic;
    margin: 4rem 0 2.5rem;
    text-align: center;
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.day-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(166, 163, 152, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.day-card .day-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 2.25rem;
    color: #A6A398;
    display: block;
    margin-bottom: 1rem;
}

.day-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.day-card p {
    font-size: 0.875rem;
    color: rgba(54, 53, 46, 0.6);
    font-weight: 500;
}

/* Benefits */
.benefits {
    padding: 6rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-elegant);
}

.benefits h2 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-style: italic;
    margin-bottom: 4rem;
}

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

.benefit-item .icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    color: var(--accent);
    opacity: 0.6;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    font-size: 0.875rem;
    color: rgba(54, 53, 46, 0.7);
}

/* Offer Section */
.offer {
    background-color: var(--dark-bg);
    color: #E6E4DC;
    padding: 6rem 1.5rem;
}

.offer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
    align-items: center;
}

.offer-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.offer-text h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.offer-text p.intro {
    font-size: 1.125rem;
    color: rgba(230, 228, 220, 0.6);
    margin-bottom: 2.5rem;
}

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

.offer-list li {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(230, 228, 220, 0.1);
    margin-bottom: 1.5rem;
}

.offer-list li span {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: rgba(230, 228, 220, 0.8);
}

.price-card {
    background-color: var(--light-bg-alt);
    color: var(--black);
    padding: 3rem 2rem 4rem;
    border-radius: 1.25rem;
    text-align: center;
    flex: 0 1 400px;
    position: relative;
}

.price-card .decorator {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.price-card p.label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.price-card p.old-price {
    font-style: italic;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.price-card .current-price {
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.05em;
    line-height: 1;
}

.price-card .current-price .currency {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
    margin-right: 0.25rem;
    margin-top: 0.75rem;
    display: inline-block;
}

.price-card .current-price .cents {
    font-size: 2.25rem;
    font-family: 'Montserrat', sans-serif;
    vertical-align: top;
    margin-top: 0.75rem;
    display: inline-block;
}

/* Scarcity Elements */
.scarcity-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #b91c1c;
    /* Deep red for urgency */
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.scarcity-header i {
    width: 1.5rem;
    height: 1.5rem;
}

.scarcity-box {
    border: 2px dashed #b91c1c;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    background-color: rgba(185, 28, 28, 0.05);
}

.scarcity-box p {
    font-size: 0.8rem;
    font-weight: 700;
    color: #b91c1c;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.scarcity-progress {
    margin-bottom: 1.25rem;
}

.scarcity-progress .bar-container {
    height: 1.25rem;
    background-color: #e5e7eb;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.scarcity-progress .bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 999px;
}

.scarcity-progress .bar-label {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    font-size: 0.7rem;
    font-weight: 800;
    color: #000000;
}

.price-notice {
    font-size: 0.7rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 2rem;
    text-transform: uppercase;
    line-height: 1.4;
}

.cta-support {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    font-style: italic;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.65rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
}

.trust-badges i {
    width: 0.875rem;
    height: 0.875rem;
    color: var(--green);
}

/* Guarantee Small */
.guarantee-small {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(22, 163, 74, 0.05);
    /* Leve toque de verde */
    border: 1px dashed rgba(22, 163, 74, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: left;
}

.guarantee-small i {
    width: 2rem;
    height: 2rem;
    color: var(--green);
    flex-shrink: 0;
}

.guarantee-small p {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    margin: 0;
}

.guarantee-small strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.125rem;
}

/* Author Section */
.author {
    padding: 8rem 1.5rem;
    background-color: var(--white);
    border-top: 1px solid var(--border-elegant);
}

.author-content {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.author-image {
    flex: 0 0 400px;
    max-width: 100%;
}

.author-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.author-text {
    flex: 1;
    min-width: 300px;
}

.author-text h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.author-text p {
    font-size: 1.125rem;
    color: rgba(54, 53, 46, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .author-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .author-image {
        flex: 0 0 auto;
        max-width: 500px;
    }

    .author-text {
        text-align: left;
    }
}

/* FAQ Section */
.faq {
    background-color: var(--light-bg-alt);
    padding: 6rem 1.5rem;
    border-top: 1px solid var(--border-elegant);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-style: italic;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(166, 163, 152, 0.1);
}

.faq-item h4 {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item .dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--accent);
    border-radius: 50%;
}

.faq-item p {
    color: rgba(54, 53, 46, 0.7);
}

/* Testimonials */
.testimonials {
    padding: 6rem 1.5rem;
    background-color: var(--dark-bg);
    color: #E6E4DC;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 5rem;
    font-style: italic;
}

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

.testimonial-card {
    background-color: var(--white);
    color: var(--black);
    padding: 2.5rem;
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 0.15rem;
    margin-bottom: 1rem;
    color: #fbbf24;
    /* Amber-400 */
    font-size: 1.1rem;
    line-height: 1;
}

.testimonial-stars i {
    width: 1rem;
    height: 1rem;
    fill: #fbbf24;
    stroke: #fbbf24;
    stroke-width: 0;
}

.testimonial-card p.text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--bg-main);
}

.author-info p.name {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
}

.author-info p.tag {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
}

/* Footer */
footer {
    padding: 6rem 1.5rem;
    text-align: center;
    border-top: 1px solid var(--border-elegant);
}

footer h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
}

footer p.copy {
    font-size: 0.75rem;
    color: rgba(54, 53, 46, 0.4);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-elegant);
    z-index: 100;
    display: none;
    /* JS will show it */
    justify-content: center;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: flex;
    }
}

.btn-sticky {
    width: 100%;
    padding: 1rem;
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 4rem;
    }

    .offer-content {
        flex-direction: column;
    }
}

/* Notification Popup (iPhone Style) */
.notification-popup {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    z-index: 10000;
    transition: top 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.notification-popup.show {
    top: 20px;
}

.notification-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: var(--green);
    color: white;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    width: 1.5rem;
    height: 1.5rem;
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.125rem;
    display: block;
}

.notification-text {
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.4;
}

@media (min-width: 769px) {
    .notification-popup {
        left: unset;
        right: 20px;
        transform: none;
        width: 380px;
        top: -120px;
    }

    .notification-popup.show {
        top: 20px;
    }
}