/* RESET AND VARIABLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary: #D35400; /* Deep Construction Orange */
    --hover-primary: #a04000;
    --dark: #f4f4f4;
    --darker: #fafafa;
    --dark-card: #ffffff;
    --light: #121212;
    --text-muted: #555555;
    --gold: #D35400;
    --border: #cccccc;
}

body {
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY HELPER */
.highlight {
    color: var(--primary);
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 16px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(211, 84, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 15px;
}

.cta-button:hover {
    background-color: var(--hover-primary);
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.6);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(211, 84, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 84, 0, 0); }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(to bottom, var(--darker), #e8e8e8);
    padding: 60px 0 40px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.headline {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 800px;
}

.mockup-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
}

.mockup-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: brightness(0.96) contrast(0.97);
    border-radius: 12px;
}

.hero-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    background: var(--dark-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.hero-benefits li {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.hero-benefits li:last-child {
    margin-bottom: 0;
}

.check-icon {
    background-color: var(--primary);
    color: var(--darker);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-right: 12px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* O QUE VAI RECEBER */
.what-you-get {
    padding: 60px 0;
    background-color: var(--dark);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

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

.feature-card img {
    width: 100%;
    height: auto;
    display: block;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-body p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials {
    padding: 60px 0;
    background-color: #fcfcfc; /* Light/clear grey background */
}

.testimonials .section-title {
    color: var(--light);
}

.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    border-top: 4px solid var(--primary);
    display: flex;
    flex-direction: column;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.user-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--light);
    margin: 0;
}

.user-info .stars {
    margin-top: 2px;
    font-size: 1rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* OFFER SECTION */
.offer {
    padding: 60px 0;
    background-color: var(--darker);
}

.offer-card {
    background: linear-gradient(145deg, var(--dark-card), #d1d1d1);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.offer-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.badge-wrapper {
    margin-bottom: 20px;
}

.badge {
    background-color: #27ae60; /* Success Green */
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.price-container {
    margin-bottom: 25px;
}

.old-price {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.3); /* Faded/Transparent Black */
    text-decoration: line-through;
    font-weight: 600;
}

.new-price {
    font-size: 1.2rem;
    color: var(--light);
    line-height: 1.2;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
}

.offer-includes {
    text-align: left;
    margin-bottom: 30px;
    background-color: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: 8px;
}

.includes-title {
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    color: var(--light); /* Black/Dark text instead of gold */
}

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

.offer-includes li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-icon-gold {
    color: #27ae60; /* Success Green */
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 10px;
}

.secure-checkout {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 15px;
}

/* GUARANTEE */
.guarantee {
    padding: 40px 0;
    background-color: var(--primary);
    color: var(--darker);
}

.guarantee-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background-color: rgba(0,0,0,0.05);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
}

.guarantee-seal {
    width: 140px;
    height: auto;
}

.guarantee-text h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.guarantee-text p {
    font-size: 1rem;
    font-weight: 600;
    max-width: 600px;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background-color: var(--darker);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: var(--dark-card);
    color: var(--light);
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d1d1d1;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    background-color: var(--dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--text-muted);
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-question.active + .faq-answer {
    max-height: 200px;
    padding: 0 0 18px 0;
}

/* FOOTER */
.footer {
    background-color: var(--dark-card);
    padding: 40px 0 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #888;
    max-width: 800px;
    margin: 0 auto 20px;
}

.copyright {
    font-size: 0.85rem;
    color: #666;
}

/* RESPONSIVE DESIGN */
@media screen and (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin: 30px auto 0;
    }

    /* Centralizar o último card */
    .feature-card:nth-child(5) {
        grid-column: span 2;
        max-width: 435px;
        margin: 0 auto;
    }

    .testimonials-list {
        flex-direction: row;
        justify-content: center;
    }

    .testimonial-card {
        flex: 1;
    }

    .guarantee-box {
        justify-content: center;
        max-width: 700px;
        margin: 0 auto;
    }


    .cta-button {
        max-width: 400px;
        font-size: 1.5rem;
    }
}


/* MOBILE ADJUSTMENTS (LINE COUNTS) */
.mobile-break { display: none; }

@media screen and (max-width: 480px) {
    .mobile-break { display: block; }
    
    .headline {
        font-size: 1.85rem !important; /* Original 2.2rem, slightly adjusted for 4 lines */
        line-height: 1.2 !important;
    }

    .section-title {
        font-size: 1.45rem !important; /* Forces max 2 lines (with the existing <br>) */
        line-height: 1.2 !important;
        margin-bottom: 2rem !important;
    }
    
    /* Specific adjustment for Testimonials Title (Max 1 line) */
    .testimonials .section-title {
        font-size: 1.15rem !important;
        white-space: nowrap; 
    }
}
