:root {
    --black: #000000;
    --dark-gray: #111111;
    --light-gray: #333333;
    --gold: #D4AF37;
    --gold-light: #FFD700;
    --white: #FFFFFF;
    --text-color: #E0E0E0;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--black);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--gold);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--gold), #B8860B);
    color: var(--black);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    font-family: var(--font-main);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 40px;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.strike {
    text-decoration: line-through;
    color: #888;
}



/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.main-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.sub-headline {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.old-price {
    margin-bottom: 40px;
    /* Increased margin */
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--gold);
    max-height: 600px;
    object-fit: cover;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid #ff4444;
    transition: transform 0.3s ease;
}

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

.problem-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-family: var(--font-main);
    font-weight: 700;
}

.problem-summary {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--light-gray);
    padding-top: 30px;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background-color: var(--black);
}

.solution-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.transformation-box {
    background: linear-gradient(135deg, var(--dark-gray), #222);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 1px solid var(--gold);
}

.transformation-box h3 {
    text-align: center;
    margin-bottom: 30px;
}

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

.transformation-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.transformation-list li:last-child {
    border-bottom: none;
}

.transformation-list .arrow {
    color: var(--gold);
    font-weight: bold;
}

/* Deliverables Section */
.deliverables {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

.deliverables-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deliverable-item {
    display: flex;
    gap: 15px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.deliverable-item .check {
    font-size: 1.5rem;
}

.deliverable-item h3 {
    font-family: var(--font-main);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 5px;
}

.mobile-deliverable-list {
    display: none;
}

.desktop-deliverable-text {
    display: block;
}

@media (max-width: 768px) {
    .mobile-deliverable-list {
        display: block;
        list-style-type: disc;
        padding-left: 20px;
        margin-top: 10px;
    }

    .mobile-deliverable-list li {
        margin-bottom: 8px;
        color: #ddd;
        font-size: 0.95rem;
    }

    .desktop-deliverable-text {
        display: none;
    }

    .tf-mobile-first-card-bullets {
        opacity: 0;
        transform: translateY(8px);
        animation: tf-mobile-fade-in 0.35s ease-out 0.1s forwards;
    }
}

@keyframes tf-mobile-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.total-value {
    text-align: center;
    margin-top: 40px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}



/* Offer Section */
.offer {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
}

.price-box {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 50px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.black-november-tag {
    background: var(--gold);
    color: var(--black);
    display: inline-block;
    padding: 5px 15px;
    font-weight: 800;
    border-radius: 5px;
    margin-bottom: 30px;
}

.installments {
    color: var(--white);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.small-text {
    font-size: 1.2rem;
    color: #ccc;
}

.big-price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-display);
    line-height: 1;
}

.guarantee {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.roi {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 30px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    /* Increased width */
    margin: 0 auto;
    padding: 0 50px;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.carousel-slide {
    min-width: 200px;
    /* Smaller width to show more items */
    max-width: 200px;
    flex: 0 0 auto;
}

.carousel-slide img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Responsive Carousel */
@media (max-width: 768px) {
    .carousel-slide {
        min-width: 250px;
    }

    .carousel-container {
        padding: 0 40px;
    }
}

.testimonial-card {
    background: var(--black);
    padding: 30px;
    border-radius: 10px;
    border-top: 3px solid var(--gold);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.author {
    font-weight: 700;
    color: var(--gold);
    text-align: right;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 60px;
}

.stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

.testimonials-gallery-section {
    margin-top: 60px;
}

.subsection-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.testimonials-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.testimonial-img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.testimonial-img:hover {
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

/* Bio Section */
.bio {
    padding: 80px 0;
    background-color: var(--black);
}

.bio-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 15px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    /* Changed from center to allow sticky behavior */
}

.bio-image-container {
    flex: 1;
    min-width: 300px;
    position: sticky;
    /* Sticky behavior */
    top: 40px;
    /* Distance from top */
}

.bio-img {
    width: 100%;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-text {
    flex: 2;
}

.bio-qualifications {
    margin-bottom: 30px;
}

.bio-qualifications h4 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.bio-list {
    margin: 20px 0;
}

.bio-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.bio-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
}

.bio-differential {
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--gold);
}

/* Authority Section */
.authority {
    padding: 40px 0 80px;
    background-color: var(--black);
}

.authority-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.authority-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.authority-img:hover {
    filter: grayscale(0%);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--dark-gray);
}

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

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--white);
    padding: 20px 0;
    font-size: 1.1rem;
    font-family: var(--font-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--gold);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: #ccc;
}

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

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

/* Footer */
.footer {
    padding: 80px 0 20px;
    background-color: var(--black);
    border-top: 1px solid var(--light-gray);
}

.footer-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.options {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.option {
    flex: 1;
    background: var(--dark-gray);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.option.highlight {
    border: 1px solid var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.option h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.urgency-box {
    margin-bottom: 30px;
    font-weight: 600;
    color: #ff4444;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 20px 0 60px;
        /* Reduced top padding to move logo up */
        position: relative;
        overflow: hidden;
        background: #000;
        /* Ensure dark background */
        min-height: 80vh;
        /* Ensure enough height */
    }

    /* Mobile Background Image (Fernanda) */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('hero.jpg');
        background-position: center 30%;
        /* Adjusted position */
        background-size: cover;
        opacity: 1;
        /* Full visibility as requested */
        z-index: 0;
        pointer-events: none;
    }

    /* Gradient Overlay */
    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 70%;
        /* Gradient only on bottom part */
        background: linear-gradient(to top, #000000 50%, transparent 100%);
        z-index: 1;
        pointer-events: none;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        position: relative;
        z-index: 2;
        /* Ensure content is above background */
        justify-content: space-between;
        height: 100%;
    }

    .logo-area {
        margin-bottom: 0;
    }

    .hero-image {
        display: none;
        /* Hide the static image on mobile */
    }

    .sub-headline {
        font-size: 1rem;
        /* Reduced font size */
        margin-bottom: 30px;
    }

    .main-headline {
        font-size: 2.2rem;
        margin-top: 280px;
        /* Push content down to reveal face */
        margin-bottom: 15px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        /* Improve readability */
    }

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

    .bio-image-container {
        width: 100%;
        max-width: 400px;
        position: static;
        /* Disable sticky on mobile */
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .badges {
        justify-content: center;
    }

    .options {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}