/* ===================================
   PÁGINA DE VENDAS SAGRADA RAIZ
   30 Dias Para Se Reconstruir Após a Traição
   =================================== */

/* ===================================
   VARIÁVEIS DE CORES E FONTES
   =================================== */
:root {
    /* Cores principais baseadas no site */
    --primary-color: #8B7355;
    --secondary-color: #D4A574;
    --accent-color: #9B6B4F;
    --dark-color: #3C2F2F;
    --light-bg: #FAF8F6;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    
    /* Fontes */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ===================================
   RESET E BASE
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===================================
   TIPOGRAFIA
   =================================== */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    font-weight: 700;
}
/* ===== HEADER ===== */
.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  max-height: 50px;
  width: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.3);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #F5F0EA 100%);
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.overline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    margin-top: 2rem;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 450px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-radius: 8px;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 198, 147, 0.3);
    color: var(--white);
}

.btn-cta {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 20px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 103, 16, 0.4);
    color: var(--white);
}

.btn-lg {
    padding: 20px 50px;
    font-size: 1.2rem;
}

/* ===================================
   PAIN SECTION
   =================================== */
.pain-section {
    background-color: var(--white);
}

.pain-quote {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.pain-quote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin: 0;
}

.pain-grid {
    margin-top: 3rem;
}

.pain-item {
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    background-color: var(--light-bg);
    transition: all 0.3s ease;
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.pain-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pain-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   TRANSFORMATION SECTION
   =================================== */
.transformation-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #F9F6F2 100%);
}

.transformation-grid {
    margin-top: 3rem;
}

.transformation-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.transformation-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.check-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.transformation-item p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* ===================================
   METHOD SECTION
   =================================== */
.method-section {
    background-color: var(--white);
}

.method-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.method-pillars {
    margin-top: 3rem;
}

.pillar-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.pillar-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.pillar-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.pillar-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   JOURNEY SECTION
   =================================== */
.journey-section {
    background: linear-gradient(135deg, #F5F0EA 0%, var(--light-bg) 100%);
}

.journey-timeline {
    margin-top: 3rem;
    position: relative;
}

.timeline-block {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 120px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 90px;
    height: 90px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.timeline-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.timeline-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.timeline-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.timeline-list li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.2rem;
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-works-section {
    background-color: var(--white);
}

.how-works-grid {
    margin-top: 3rem;
}

.how-works-item {
    text-align: center;
    padding: 2rem;
}

.how-number {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-color);
}

.how-works-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.how-works-item p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, #FAF8F6 100%);
}

.benefits-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   AUTHOR SECTION
   =================================== */
.author-section {
    background-color: var(--white);
    padding: 80px 0;
}

.author-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
    object-position: top center;
}

.author-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.author-bio {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===================================
   OFFER SECTION
   =================================== */
.offer-section {
    background: linear-gradient(135deg, #E8DDD0 0%, #D4C4B0 100%);
    padding: 100px 0;
}

.offer-box {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.offer-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.offer-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.offer-includes {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2.5rem;
}

.offer-includes h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.offer-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-includes li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid #E5E5E5;
}

.offer-includes li:last-child {
    border-bottom: none;
}

.price-box {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    color: var(--white);
}

.price-label {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.price-value {
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-heading);
}

.price-installments {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.9;
}

.cta-box {
    text-align: center;
    margin: 2.5rem 0;
}

.guarantee-badge {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.guarantee-box {
    background-color: #E8F5E9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #81C784;
}

.guarantee-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2E7D32;
}

.guarantee-box p {
    margin: 0;
    color: #4CAF50;
    font-size: 1.05rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background-color: var(--white);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--light-bg);
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--secondary-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 1.5rem;
    font-weight: 300;
}

.accordion-button:not(.collapsed)::after {
    content: "−";
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 100px 0;
    color: var(--white);
}

.final-cta-title {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.final-cta-text {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.final-guarantee {
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 3rem 0;
}

.footer-brand {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ===================================
   ANIMAÇÕES
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVIDADE
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .timeline-block {
        padding-left: 110px;
    }
    
    .timeline-badge {
        width: 80px;
        height: 80px;
        font-size: 0.85rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .pain-quote p {
        font-size: 1.2rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-text {
        font-size: 1.1rem;
    }
    
    .offer-box {
        padding: 2rem 1.5rem;
    }
    
    .timeline-block {
        padding-left: 0;
        padding-top: 100px;
    }
    
    .timeline-badge {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    
    .btn-cta,
    .btn-primary {
        width: 100%;
        padding: 16px 30px;
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .pain-item,
    .transformation-item,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .pillar-card {
        padding: 2rem 1rem;
    }
    
    .offer-title {
        font-size: 2rem;
    }
    
    .author-photo {
        width: 200px;
        height: 200px;
    }
}