/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Work+Sans:wght@500;600;700&display=swap');

/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #bdaba1;
    --accent-color: #3C3937;
    --text-dark: #3C3937;
    --text-light: #1C3552;
    --bg-light: #C7B8AF;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #1C3552 0%, #1C314A 100%);
    --shadow: 0 10px 30px rgba(60, 57, 55, 0.15);
    --transition: all 0.3s ease;
    --secondary-blue: #1C3552;
    --secondary-blue-dark: #1C314A;
    --gold-accent: #D4AF37;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-blue);
    overflow-x: hidden;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Optimize rendering performance for key elements */
.header, .hero-content {
    will-change: auto;
}

/* Optimize rendering performance for key elements */

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

/* Header */
.header {
    background: var(--white);
    padding: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    /* Ensure consistent height */
    min-height: 110px;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
}

.logo img {
    height: 70px;
    width: auto;
}

.header-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 500px;
    z-index: 1;
}

/* DESKTOP OVERRIDE - LAYOUT CORRETO */
@media screen and (min-width: 1025px) {
    .header-content {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
        position: relative !important;
    }
    
    .logo {
        z-index: 10 !important;
        position: relative !important;
    }
    
    .header-title {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        max-width: 600px !important;
        z-index: 5 !important;
    }
    
    .header-title h2 {
        font-size: 32px !important;
        letter-spacing: 1px !important;
    }
    
    .header-title span {
        font-size: 11px !important;
        margin-top: 4px !important;
    }
}



.header-title h2 {
    font-family: 'Work Sans', 'Inter', sans-serif;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    font-stretch: expanded;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
}

.header-title span {
    color: var(--text-light);
    font-size: 10px;
    font-weight: 400;
    margin-top: 3px;
    display: block;
    line-height: 1.2;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #C7B8AF 0%, #bdaba1 100%);
    position: relative;
    overflow: hidden;
    /* Prevent content jumping */
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
}

/* Overlay removido para não interferir na capa do e-book */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.highlight {
    color: var(--secondary-blue);
    position: relative;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.5;
    opacity: 0.9;
}

.benefits-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: left;
    white-space: nowrap;
}

.check {
    background: var(--secondary-blue);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    font-weight: bold;
}

.cta-section {
    text-align: center;
}

.price-simple {
    margin: 10px 0 15px 0;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    text-align: center;
}

.cta-button {
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    background: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
    color: white;
    text-decoration: none;
}

.cta-subtitle {
    margin-top: 15px;
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    text-align: center;
}

/* E-book Mockup Inline - Only for Mobile */
.hero-image-inline {
    display: none; /* Hidden on desktop */
}

/* E-book Mockup */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-mockup {
    perspective: 1000px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
}

.ebook-mockup:hover {
    transform: rotateY(-5deg) rotateX(2deg);
}

.ebook-mockup:hover .ebook-cover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.ebook-cover {
    width: 380px;
    height: 500px;
    background: url('./images/ebook/ebook-cover.jpg') center/cover no-repeat !important;
    background-color: transparent !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border-radius: 15px;
    border: 3px solid white;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Remover estilos de texto sobreposto - agora mostra apenas a capa real */

/* Problem Section */
.problem {
    padding: 80px 0;
    background: white;
    position: relative;
}

.problem h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-blue);
}

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

.problem-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.problem-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.problem-item p {
    color: var(--secondary-blue);
    line-height: 1.6;
    opacity: 0.8;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--secondary-blue);
    position: relative;
}

.solution-content {
    text-align: center;
    margin-bottom: 60px;
}

.solution h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.solution-subtitle {
    font-size: 20px;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.module {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.module:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.module-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.module h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-blue);
}

.module p {
    color: var(--secondary-blue);
    line-height: 1.6;
    opacity: 0.8;
}

/* Author Section - Floating Card Design */
.author {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.author-parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 53, 82, 0.03) 0%, rgba(189, 171, 161, 0.08) 100%);
    z-index: 0;
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--secondary-blue);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.author-floating-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    z-index: 2;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-floating-card:hover {
    transform: translateY(-10px);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(28, 53, 82, 0.95) 0%, rgba(28, 49, 74, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 
        0 20px 60px rgba(28, 53, 82, 0.25),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.author-card-content {
    position: relative;
    padding: 60px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.author-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 120px;
}

.author-photo-ring {
    display: none;
}





@keyframes light-trace {
    0% {
        background-position: -100% -100%;
        opacity: 0.15;
    }
    25% {
        opacity: 0.2;
    }
    50% {
        background-position: 50% 50%;
        opacity: 0.3;
    }
    75% {
        opacity: 0.2;
    }
    100% {
        background-position: 200% 200%;
        opacity: 0.15;
    }
}

.author-photo {
    width: 280px;
    height: 690px;
    border-radius: 8px;
    background-image: url('images/author/thaila-professional.jpg');
    background-size: cover;
    background-position: center top;
    position: relative;
    z-index: 3;
    overflow: hidden;
    margin: 5px;
    border: 0.5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 0 20px rgba(199, 184, 175, 0.4),
        0 0 40px rgba(199, 184, 175, 0.25),
        0 0 60px rgba(199, 184, 175, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.author-photo::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;
    border-radius: 12px;
    background: linear-gradient(45deg, 
        transparent,
        rgba(199, 184, 175, 0.2),
        transparent,
        rgba(199, 184, 175, 0.35),
        transparent,
        rgba(199, 184, 175, 0.2),
        transparent
    );
    animation: light-trace 4s ease-in-out infinite;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}

.author-photo:hover {
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 0 25px rgba(199, 184, 175, 0.6),
        0 0 50px rgba(199, 184, 175, 0.35),
        0 0 80px rgba(199, 184, 175, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.author-instagram-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(60, 57, 55, 0.2);
    z-index: 3;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    text-decoration: none;
}

.author-instagram-badge:hover {
    transform: scale(1.05);
    background: var(--primary-color);
    box-shadow: 0 12px 30px rgba(60, 57, 55, 0.3);
}

.instagram-badge-icon {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(25%) sepia(8%) saturate(1032%) hue-rotate(314deg) brightness(95%) contrast(88%);
    transition: var(--transition);
}

.author-instagram-badge:hover .instagram-badge-icon {
    filter: brightness(0) invert(1);
}

.author-title {
    text-align: center;
    margin-bottom: 30px;
}

.author-title h2 {
    font-size: 42px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-blue));
    margin: 0 auto;
    border-radius: 2px;
}

.author h3 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.author-role {
    text-align: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 500;
}

.author-credentials {
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.credential-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.credential-icon {
    font-size: 24px;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.credential-item span {
    font-size: 16px;
    color: white;
    font-weight: 500;
    line-height: 1.5;
}

.author-quote {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid var(--primary-color);
    margin-top: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    display: none;
}

.author-quote p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    color: white;
    margin-bottom: 15px;
    padding-top: 20px;
    position: relative;
}

.author-quote p::before {
    content: '"';
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.7;
    font-family: Georgia, serif;
    margin-right: 5px;
    vertical-align: baseline;
}

.author-quote p::after {
    content: '"';
    font-size: 20px;
    color: var(--primary-color);
    opacity: 0.7;
    font-family: Georgia, serif;
    margin-left: 5px;
    vertical-align: baseline;
}

.quote-author {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
}

/* Content Preview */
.content-preview {
    padding: 80px 0;
    background: white;
}

.content-preview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-blue);
}

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

.preview-item {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--bg-light);
    transition: var(--transition);
}

.preview-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.preview-item h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.preview-item p {
    color: var(--secondary-blue);
    line-height: 1.6;
    opacity: 0.8;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--secondary-blue);
}

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

.testimonial {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary-blue);
    text-align: justify;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center !important;
    display: block;
    width: 100%;
}

/* Final CTA Section - New Layout with E-book Cover */
.final-cta {
    padding: 80px 0;
    background: var(--secondary-blue);
    position: relative;
}

.final-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ebook-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ebook-cover-final {
    width: 420px;
    height: 550px;
    background: url('./images/ebook/ebook-cover.jpg') center/cover no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 3px solid white;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.ebook-cover-final:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.cta-content {
    color: var(--white);
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.urgency-icon {
    font-size: 16px;
}

.urgency-text {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.scarcity-elements {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.scarcity-icon {
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.scarcity-item span:last-child {
    font-size: 16px;
    opacity: 0.9;
}

.final-cta-button {
    text-align: center;
}

.final-button {
    font-size: 20px;
    padding: 20px 50px;
    margin-bottom: 15px;
    background: var(--accent-color);
    background: linear-gradient(45deg, var(--accent-color), #4f46e5);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.final-button:hover {
    background: linear-gradient(45deg, #1e3a8a, #3730a3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.payment-security {
    color: var(--white);
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Footer - New Design */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    font-size: 16px;
    margin: 0;
    opacity: 0.8;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-text {
    font-size: 15px;
    opacity: 0.7;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.instagram-link:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.instagram-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 10px;
}

.footer-disclaimer p {
    font-size: 13px;
    opacity: 0.6;
    margin: 0;
    font-style: italic;
}

/* Responsive Design */



/* Tablets menores */
@media (max-width: 819px) and (min-width: 769px) {
    .header {
        padding: 18px 0;
    }
    
    .logo img {
        height: 55px;
    }
    
    .header-title h2 {
        font-size: 28px !important;
        line-height: 1.1 !important;
        white-space: nowrap;
    }
    
    .header-title span {
        font-size: 10px !important;
        line-height: 1.2 !important;
        white-space: nowrap;
    }
    
    .hero {
        padding: 100px 0 70px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile - Complete Reset */
    .header {
        padding: 20px 0;
        min-height: 120px;
    }
    
    .header-content {
        display: block !important;
        text-align: center;
        padding: 10px 0;
    }
    
    .logo {
        display: block !important;
        width: 100%;
        text-align: center;
    }
    
    .logo img {
        height: 50px;
        display: block;
        margin: 0 auto 10px auto;
    }
    
    .header-title {
        position: static !important;
        left: auto !important;
        transform: none !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        max-width: none !important;
    }
    
    .header-title h2 {
        font-size: 20px !important;
        line-height: 1.1 !important;
        margin: 0 0 5px 0 !important;
        text-align: center !important;
    }
    
    .header-title span {
        font-size: 9px !important;
        line-height: 1.2 !important;
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 300px;
    }
    
    /* Hero Section */
    .hero {
        padding: 180px 0 60px;
        margin-top: 0;
        min-height: calc(100vh - 120px);
    }
    
    .hero-content {
        display: block;
        text-align: center;
        max-width: 100%;
    }
    
    /* Show inline ebook on mobile, hide lateral */
    .hero-image {
        display: none;
    }
    
    .hero-image-inline {
        display: flex !important;
        justify-content: center;
        align-items: center;
        margin: 25px 0;
    }
    
    .hero-image-inline .ebook-mockup {
        perspective: 1000px;
        transform: rotateY(-5deg) rotateX(2deg);
        transition: var(--transition);
    }
    
    .hero-image-inline .ebook-mockup:hover {
        transform: rotateY(-2deg) rotateX(1deg);
    }
    
    .hero-image-inline .ebook-cover {
        width: 240px;
        height: 320px;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    /* Section Titles */
    .problem h2,
    .solution h2,
    .content-preview h2,
    .testimonials h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    /* Final CTA */
    .final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Ebook Cover Final - Mobile Responsivo */
    .ebook-cover-final {
        width: 280px !important;
        height: 360px !important;
        margin: 0 auto;
        transform: perspective(800px) rotateY(-3deg);
        box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    }

    .cta-content h2 {
        font-size: 26px;
        line-height: 1.2;
    }

    .cta-description {
        font-size: 16px;
    }

    .final-button {
        font-size: 18px;
        padding: 18px 40px;
    }

    /* Scarcity Elements - Mobile Responsivo */
    .scarcity-elements {
        margin-bottom: 30px;
    }

    .scarcity-item {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        text-align: left;
    }

    .scarcity-icon {
        font-size: 18px;
        width: 20px;
        flex-shrink: 0;
        text-align: center;
    }

    .scarcity-item span:last-child {
        font-size: 14px;
        line-height: 1.4;
        opacity: 0.95;
    }
    
    .footer-main {
        gap: 12px;
    }
    
    .social-links {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Benefits List Mobile - Checks Perfeitamente Alinhados */
    .benefits-list {
        margin-bottom: 30px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .benefit-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin-bottom: 12px;
        font-size: 15px;
        text-align: left !important;
        white-space: nowrap !important;
        width: 350px !important;
        position: relative !important;
    }
    
    .check {
        background: var(--secondary-blue) !important;
        color: white !important;
        width: 20px !important;
        height: 20px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 12px !important;
        font-size: 12px !important;
        font-weight: bold !important;
        flex-shrink: 0 !important;
        position: absolute !important;
        left: 0 !important;
    }
    
    .benefit-item span:not(.check) {
        margin-left: 32px !important;
        display: block !important;
    }
    
    /* Problems and Modules Grid */
    .problems-grid,
    .modules-grid,
    .preview-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-item,
    .module {
        padding: 25px 20px;
    }
    
    .problem-item h3,
    .module h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .author {
        min-height: auto;
        padding: 80px 0;
    }

    .author-card-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }
    
    .author-photo-container {
        margin-top: 0;
        align-items: center;
    }

    .author-title h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .author h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .author-role {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .ebook-cover {
        width: 320px;
        height: 430px;
        padding: 40px 35px;
        border: 3px solid white;
        transform: perspective(800px) rotateY(-3deg);
    }
    
    .ebook-cover h2 {
        font-size: 28px;
    }

    .ebook-cover h3 {
        font-size: 16px;
    }

    .ebook-cover p {
        font-size: 16px;
    }

    .ebook-cover .author {
        font-size: 18px;
    }

    .credential-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .credential-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .author-quote {
        padding: 25px;
        margin-top: 20px;
    }

    .author-quote p {
        font-size: 14px;
    }

    .quote-icon {
        font-size: 40px;
        top: -5px;
        left: 15px;
    }
    
    .problems-grid,
    .modules-grid,
    .preview-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile Small - Complete Reset */
    .header {
        padding: 15px 0;
        min-height: 100px;
    }
    
    .header-content {
        display: block !important;
        padding: 5px 0;
    }
    
    .logo {
        display: block !important;
    }
    
    .logo img {
        height: 45px !important;
        margin-bottom: 8px !important;
    }
    
    .header-title {
        position: static !important;
        left: auto !important;
        transform: none !important;
        display: block !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .header-title h2 {
        font-size: 16px !important;
        line-height: 1.1 !important;
        margin: 0 0 3px 0 !important;
    }
    
    .header-title span {
        font-size: 8px !important;
        line-height: 1.1 !important;
        max-width: 280px !important;
        margin: 0 auto !important;
    }
    
    /* Hero Section */
    .hero {
        padding: 150px 0 50px;
        margin-top: 0;
        min-height: calc(100vh - 100px);
    }
    
    .hero-text h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    /* Mobile small - show inline ebook */
    .hero-image {
        display: none;
    }
    
    .hero-image-inline {
        display: flex !important;
        margin: 20px 0;
    }
    
    .hero-image-inline .ebook-cover {
        width: 200px;
        height: 270px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Section Titles */
    .problem h2,
    .solution h2,
    .content-preview h2,
    .testimonials h2 {
        font-size: 24px;
        line-height: 1.2;
    }

    .cta-content h2 {
        font-size: 22px;
        line-height: 1.2;
    }

    .urgency-banner {
        font-size: 12px;
        padding: 6px 15px;
    }

    .final-button {
        font-size: 16px;
        padding: 16px 35px;
    }

    /* Ebook Cover Final - Mobile Extra Small */
    .ebook-cover-final {
        width: 240px !important;
        height: 310px !important;
        margin: 0 auto;
        transform: perspective(600px) rotateY(-2deg);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    /* Scarcity Elements - Mobile Extra Small */
    .scarcity-elements {
        margin-bottom: 25px;
        gap: 12px;
    }

    .scarcity-item {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 8px 0;
        text-align: left;
    }

    .scarcity-icon {
        font-size: 16px;
        width: 18px;
        flex-shrink: 0;
        text-align: center;
    }

    .scarcity-item span:last-child {
        font-size: 13px;
        line-height: 1.3;
        opacity: 0.95;
    }
    
    /* Benefits List Mobile Small - Checks Perfeitamente Alinhados */
    .benefits-list {
        margin-bottom: 25px;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .benefit-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin-bottom: 10px;
        font-size: 14px;
        text-align: left !important;
        white-space: nowrap !important;
        width: 320px !important;
        position: relative !important;
    }
    
    .check {
        background: var(--secondary-blue) !important;
        color: white !important;
        width: 18px !important;
        height: 18px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 10px !important;
        font-size: 11px !important;
        font-weight: bold !important;
        flex-shrink: 0 !important;
        position: absolute !important;
        left: 0 !important;
    }
    
    .benefit-item span:not(.check) {
        margin-left: 28px !important;
        display: block !important;
    }
    
    /* Problems and Modules Grid Small */
    .problems-grid,
    .modules-grid,
    .preview-grid,
    .testimonials-grid {
        gap: 15px;
    }
    
    .problem-item,
    .module {
        padding: 20px 15px;
    }
    
    .problem-item h3,
    .module h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .problem-item p,
    .module p {
        font-size: 14px;
        line-height: 1.4;
    }

    .author {
        padding: 60px 0;
    }

    .author-card-content {
        padding: 30px 20px;
    }
    
    .author-photo-container {
        margin-top: 0;
        align-items: center;
    }

    .author-floating-card {
        margin: 0 10px;
    }
    
    /* Author Section Mobile Small */
    .author-title h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .author h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .author-role {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .author-photo::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border-radius: 10px;
        background: linear-gradient(45deg, 
            transparent,
            rgba(199, 184, 175, 0.4),
            transparent,
            rgba(199, 184, 175, 0.7),
            transparent,
            rgba(199, 184, 175, 0.4),
            transparent
        );
        animation: light-trace 3s linear infinite;
        z-index: -1;
        opacity: 0.9;
        pointer-events: none;
    }



    .author-instagram-badge {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
        border-width: 1.5px;
    }

    .instagram-badge-icon {
        width: 22px;
        height: 22px;
    }



    .credential-item {
        padding: 15px;
        margin-bottom: 15px;
    }

    .credential-icon {
        font-size: 20px;
    }

    .credential-item span {
        font-size: 14px;
    }

    .author-quote {
        padding: 20px;
    }

    .author-quote p {
        font-size: 13px;
    }

    .quote-icon {
        font-size: 35px;
        top: -8px;
        left: 10px;
    }

    .floating-shapes {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .download-form {
        padding: 30px 20px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .guarantees-section h3 {
        font-size: 20px;
    }
    
    .form-header h3 {
        font-size: 20px;
    }
    
    .guarantee-item span:last-child {
        font-size: 14px;
    }
    
    .instagram-link {
        padding: 6px 10px;
        font-size: 14px;
    }
}

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

.hero-text,
.hero-image,
.problem-item,
.module,
.preview-item,
.testimonial {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.section {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Layout - Flexbox com Espaçadores Invisíveis */
@media screen and (min-width: 1025px) {
    .header-content {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
        justify-content: space-between !important;
    }

    /* Logo à esquerda */
    .logo {
        position: static !important;
        flex-shrink: 0 !important;
        z-index: 10 !important;
        order: 1 !important;
        width: 600px !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .logo img {
        height: 70px !important;
        width: auto !important;
    }

    /* Título centralizado */
    .header-title {
        position: static !important;
        flex: 1 !important;
        text-align: center !important;
        z-index: 5 !important;
        order: 2 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Espaçador invisível à direita para balancear */
    .header-content::after {
        content: '' !important;
        width: 600px !important;
        flex-shrink: 0 !important;
        order: 3 !important;
    }

    .header-title h2 {
        font-family: 'Work Sans', 'Inter', sans-serif !important;
        color: var(--primary-color) !important;
        font-size: 32px !important;
        font-weight: 600 !important;
        font-stretch: expanded !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
    }

    .header-title span {
        color: var(--text-light) !important;
        font-size: 11px !important;
        font-weight: 400 !important;
        margin-top: 3px !important;
        display: inline !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
}

/* iPad Air 5 Layout - EXATAMENTE IGUAL DESKTOP - DEVE SER ÚLTIMA MEDIA QUERY */
@media screen and (min-width: 820px) and (max-width: 1024px) {
    .header-content {
        display: flex !important;
        align-items: center !important;
        position: relative !important;
        width: 100% !important;
        justify-content: space-between !important;
    }

    /* Logo à esquerda - MESMO ESPAÇAMENTO DO DESKTOP */
    .logo {
        position: static !important;
        flex-shrink: 0 !important;
        z-index: 10 !important;
        order: 1 !important;
        width: 600px !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    .logo img {
        height: 65px !important;
        width: auto !important;
    }

    /* Título centralizado - MESMO LAYOUT DESKTOP */
    .header-title {
        position: static !important;
        flex: 1 !important;
        text-align: center !important;
        z-index: 5 !important;
        order: 2 !important;
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Espaçador invisível à direita - MESMO TAMANHO DESKTOP */
    .header-content::after {
        content: '' !important;
        width: 600px !important;
        flex-shrink: 0 !important;
        order: 3 !important;
    }

    .header-title h2 {
        font-family: 'Work Sans', 'Inter', sans-serif !important;
        color: var(--primary-color) !important;
        font-size: 30px !important;
        font-weight: 600 !important;
        font-stretch: expanded !important;
        letter-spacing: 0.5px !important;
        margin: 0 !important;
        margin-bottom: 5px !important;
        line-height: 1.1 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
    }

    .header-title span {
        color: var(--text-light) !important;
        font-size: 10.5px !important;
        font-weight: 400 !important;
        margin-top: 3px !important;
        display: inline !important;
        line-height: 1.2 !important;
        text-align: center !important;
        white-space: nowrap !important;
    }
} 
