/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #3d0729;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

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

/* Tipografia */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-image: url("background-hero-desktop.png");
    background-size: contain;
    background-position: center 10%; /* Ajusta a posição da imagem para que o texto dela fique visível */
    background-repeat: no-repeat;
    overflow: hidden;
    padding-top: 300px; /* Adiciona padding para o conteúdo do hero começar abaixo da imagem */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.1) 40%, 
        rgba(255,255,255,0.3) 70%, 
        rgba(255,255,255,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 80px;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.hero-main-text {
    color: #3d0729;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-family: "Playfair Display";
}

.hero-secondary-text {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #3d0729;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(255,255,255,0.5);
    line-height: 1.6;
    font-family: 'Inter';
}

/* Botões CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8B7355, #6B5B47);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #6B5B47, #5A4A3A);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139,115,85,0.4);
}

.cta-button.final {
    background: linear-gradient(135deg, #8B7355, #6B5B47);
    color: white;
    font-size: 1.2rem;
    padding: 22px 45px;
    border: 2px solid rgba(255,255,255,0.2);
}

.cta-button.final:hover {
    background: linear-gradient(135deg, #6B5B47, #5A4A3A);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(139,115,85,0.4);
}

/* Problem Section */
.problem-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.problem-section h2 {
    color: #2C2C2C;
    margin-bottom: 2rem;
    font-weight: 600;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #5A5A5A;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.problem-item {
    text-align: center;
    padding: 3rem 2rem;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8B7355, #6B5B47);
}

.problem-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background: #FFFFFF;
}

.problem-item i {
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 1.5rem;
}

.problem-item p {
    font-size: 1.1rem;
    color: #2C2C2C;
    font-weight: 500;
}

.hope-message {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #F5F5F5, #E8E8E8);
    border-radius: 12px;
    color: #2C2C2C;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid #D0D0D0;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: #c59967;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text h3 {
    text-align: center;
    color: #3d0729;
    margin-bottom: 10rem;
    font-size: 1.5rem;

}

.story-text p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.7;
    text-align: center;
}

.before-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.transformation {
    text-align: center;
    padding: 4rem 0;
}

.transformation h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.pillar {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    position: relative;
    overflow: hidden;
}

.pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8B7355, #6B5B47);
}

.pillar:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.pillar i {
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 1.5rem;
}

.pillar h4 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pillar p {
    color: #5A5A5A;
    font-style: italic;
    font-size: 1rem;
}

.discovery {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 600;
    margin-top: 3rem;
}

/* Solution Section */
.solution-section {
    padding: 120px 0;
    background: #FFFFFF;
    text-align: center;
}

.solution-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5A5A5A;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.solution-emphasis {
    font-size: 1.2rem;
    color: #8B7355;
    font-weight: 600;
    background: #FAFAFA;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    max-width: 800px;
    margin: 0 auto;
}

/* Results Section */
.results-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F8F8, #F0F0F0);
}

.results-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #5A5A5A;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.result-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #E8E8E8;
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #8B7355, #6B5B47);
}

.result-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.result-item i {
    font-size: 2.5rem;
    color: #8B7355;
    margin-bottom: 1.5rem;
}

.result-item h4 {
    color: #2C2C2C;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.result-item p {
    color: #5A5A5A;
    font-style: italic;
}

/* Target Section */
.target-section {
    padding: 120px 0;
    background: #FFFFFF;
}

.target-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #5A5A5A;
}

.target-list {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    transition: all 0.3s ease;
}

.target-item:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(10px);
}

.target-item i {
    font-size: 1.5rem;
    color: #8B7355;
    flex-shrink: 0;
}

.target-item p {
    font-size: 1.1rem;
    color: #2C2C2C;
    margin: 0;
}

/* Offer Section */
.offer-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #2C2C2C, #1A1A1A);
    color: white;
}

.offer-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.offer-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #E8E8E8;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.offer-items {
    display: grid;
    gap: 1.5rem;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.offer-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

.offer-item.bonus {
    background: linear-gradient(135deg, #8B7355, #6B5B47);
    border: 2px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.offer-item.bonus::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #D4AF37);
    z-index: -1;
    border-radius: 12px;
}

.offer-item i {
    font-size: 1.5rem;
    color: #D4AF37;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.offer-item.bonus i {
    color: #FFD700;
}

.offer-item p {
    font-size: 1.1rem;
    margin: 0;
}

.offer-item strong {
    color: #D4AF37;
}

.offer-item small {
    display: block;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.pricing {
    text-align: center;
}

.value-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #D4AF37;
    font-weight: 500;
}

.price-box {
    background: white;
    color: #2C2C2C;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid #E8E8E8;
}

.old-price {
    margin-bottom: 1rem;
    
}

.crossed {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #999;
}

.new-price p {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #5A5A5A;
}

.price-highlight {
    margin: 1.1rem;
}

.installments {
    display: block;
    font-size: 1.2rem;
    color: #5A5A5A;
    margin-bottom: 0.5rem;
}

.price {
    
    font-size: 5rem;
    font-weight: 700;
    color: #8B7355;
    font-family: 'Playfair Display', serif;
}

.cash-price {
    font-size: 1rem;
    color: #5A5A5A;
    margin-bottom: 0.5rem;
}

.couple-note {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 2rem;
}

.security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #8B7355;
    font-weight: 500;
}

.final-message {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.final-message p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #E8E8E8;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: #FFFFFF;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background: #FAFAFA;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-question h4 {
    color: #2C2C2C;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #8B7355;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

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

.faq-answer p {
    color: #5A5A5A;
    margin: 0;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #F8F8F8, #F0F0F0);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.mentor-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-text h2 {
    text-align: left;
    color: #2C2C2C;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #5A5A5A;
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #2C2C2C;
    color: white;
    text-align: center;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 10px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding-bottom: 40px;
    }
    
    .story-content,
    .offer-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .problem-item,
    .result-item,
    .pillar {
        padding: 2rem 1.5rem;
    }
    
    .offer-item {
        padding: 1.5rem;
    }
    
    .price-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .problem-item,
    .result-item,
    .pillar {
        padding: 1.5rem 1rem;
    }
}



@media (max-width: 768px) {
    .hero {
        background-image: url("background-hero-mobile.png");
        background-size: cover; /* Usar cover para preencher a largura */
        background-position: center center; /* Centralizar a imagem */
        padding-top: 50vh; /* Ajuste dinâmico para o conteúdo começar mais abaixo */
        min-height: 80vh; /* Garante que a seção hero tenha altura suficiente */
    }
    
    .hero-main-text {
        font-size: 1.8rem;
        line-height: 1.1em;
        margin-bottom: 3rem;
        text-align: left;



    }
    
    .hero-secondary-text {
        font-size: 1.2rem;
        text-align: left;
    }
}

