/* ==========================================================================
   RURAL PLANNER - PREMIUM STYLING SYSTEM
   ========================================================================== */

/* 1. VARIABLES & CONFIGURATION */
:root {
    --bg-dark: #090909;
    --green-dark: #133D27;
    --green-btn: #159447;
    --green-btn-hover: #1bb759;
    --green-highlight: #25B95B;
    --gold-premium: #D8B65A;
    --gold-light: #F1D58A;
    --bg-light: #F6F2E8;
    --white: #FFFFFF;
    --text-gray: #676767;
    --red-urgency: #D62E2E;
    
    --font-primary: 'Inter', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.35);
    --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
}

/* 2. BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* 3. TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-accent);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-size: 1rem;
    color: var(--text-gray);
}

/* Highlights & Acentuations */
.highlight-gold {
    color: var(--gold-premium);
}

.highlight-green {
    color: var(--green-highlight);
}

.text-gold {
    color: var(--gold-premium);
    font-weight: 700;
}

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

/* 4. BUTTONS & UTILITIES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--green-btn);
    color: var(--white);
    border: 2px solid var(--green-btn);
}

.btn-primary:hover {
    background-color: var(--green-btn-hover);
    border-color: var(--green-btn-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(21, 148, 71, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--bg-dark);
}

.btn-secondary:hover {
    background-color: var(--bg-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

/* Animations */
.btn-pulse {
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(21, 148, 71, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(21, 148, 71, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(21, 148, 71, 0);
    }
}

/* 5. URGENCY BAR & NOTIFICATION */
.urgency-bar {
    background-color: var(--green-dark);
    color: var(--white);
    padding: 10px;
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold-premium);
    position: sticky;
    top: 0;
    z-index: 100;
}

.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow-premium);
    border-radius: 12px;
    padding: 12px 18px;
    max-width: 320px;
    z-index: 999;
    border-left: 4px solid var(--green-btn);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.purchase-notification.hidden {
    transform: translateY(150%) scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    background-color: rgba(21, 148, 71, 0.1);
    color: var(--green-btn);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon svg {
    width: 18px;
    height: 18px;
}

.notification-text {
    font-size: 0.85rem;
    font-family: var(--font-primary);
    color: var(--bg-dark);
}

.notification-name {
    font-weight: 700;
}

.notification-plan {
    color: var(--green-btn);
    font-weight: 700;
}

.notification-meta {
    display: block;
    color: var(--text-gray);
    font-size: 0.75rem;
    margin-top: 2px;
}

/* 6. HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #090909 0%, #133D27 100%);
    padding: 100px 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 40px;
    align-items: center;
    text-align: center;
}

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

.hero-badge {
    background-color: rgba(217, 182, 90, 0.15);
    color: var(--gold-premium);
    border: 1px solid var(--gold-premium);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: var(--font-accent);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    color: #b0c4b8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.hero-bullets {
    margin-bottom: 35px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.bullet-icon {
    font-size: 1.2rem;
}

.hero-action {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 480px;
}

.hero-guarantees {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #8fa89b;
}

/* Devices mockups styling */
.hero-mockup-wrapper {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-showcase {
    position: relative;
    width: 100%;
    height: 100%;
}

.mockup-device {
    position: absolute;
    box-shadow: var(--shadow-premium);
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.mockup-device:hover {
    transform: translateY(-5px) scale(1.02);
}

.laptop {
    width: 320px;
    height: 200px;
    left: 20px;
    top: 60px;
    z-index: 2;
    background-color: var(--bg-dark);
    border: 8px solid #222;
    border-radius: 12px 12px 0 0;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background-color: #0c2015;
    position: relative;
    overflow: hidden;
}

.laptop-base {
    position: absolute;
    width: 360px;
    height: 10px;
    background-color: #555;
    bottom: -18px;
    left: -20px;
    border-radius: 0 0 8px 8px;
}

.blueprint-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-size: 10px 10px;
    background-image: linear-gradient(to right, rgba(37, 185, 91, 0.05) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(37, 185, 91, 0.05) 1px, transparent 1px);
}

.blueprint-svg {
    width: 100%;
    height: 100%;
}

.blueprint-overlay {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background-color: rgba(9, 9, 9, 0.85);
    padding: 3px 6px;
    border-radius: 4px;
    border: 0.5px solid var(--gold-premium);
    display: flex;
    justify-content: space-between;
}

.overlay-tag {
    font-size: 8px;
    color: var(--gold-premium);
    font-family: var(--font-accent);
    font-weight: 700;
}

/* E-Book styling */
.book-cover {
    width: 220px;
    height: 310px;
    right: 20px;
    top: 40px;
    background: linear-gradient(145deg, #133D27 0%, #090909 100%);
    border-left: 10px solid var(--gold-premium);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
}

.book-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(to right, rgba(0,0,0,0.5), transparent);
}

.book-header {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold-premium);
}

.book-title {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin: 15px 0;
}

.book-subtitle {
    font-size: 0.75rem;
    color: #a5c3b2;
}

.book-badge {
    align-self: flex-start;
    background-color: var(--gold-premium);
    color: var(--bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
}

.book-footer {
    border-top: 1px solid rgba(216, 182, 90, 0.3);
    padding-top: 10px;
    font-size: 0.65rem;
    color: var(--gold-light);
}

/* Phone Mockup */
.phone {
    width: 110px;
    height: 190px;
    background-color: #222;
    border: 3px solid #444;
    border-radius: 18px;
    left: 150px;
    bottom: 30px;
    z-index: 4;
    padding: 4px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    border-radius: 12px;
    overflow: hidden;
}

.phone-app {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 8px;
}

.phone-header {
    font-size: 8px;
    color: var(--gold-premium);
    font-weight: 700;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
    padding-bottom: 4px;
    text-align: center;
}

.phone-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.phone-title {
    font-size: 8px;
    color: var(--white);
}

.phone-chart {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 40px;
    margin: 8px 0;
}

.phone-chart .bar {
    width: 8px;
    background-color: var(--green-highlight);
    border-radius: 2px;
}

.phone-label {
    font-size: 6px;
    color: var(--text-gray);
}

/* 7. TRANSFORMATION SECTION */
.transformation-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--green-highlight);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    color: var(--bg-dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    gap: 24px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.transform-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.transform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(21, 148, 71, 0.2);
}

.card-icon-wrapper {
    background-color: rgba(21, 148, 71, 0.08);
    color: var(--green-btn);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 8. SAMPLES CAROUSEL */
.samples-section {
    padding: 80px 0;
    background-color: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

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

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-slide {
    min-width: 33.333%;
    padding: 12px;
    flex-shrink: 0;
}

.sample-image-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.sample-image-card:hover {
    transform: scale(1.02);
}

.sample-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--bg-dark);
    color: var(--gold-premium);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
}

.sample-blueprint-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #0c2015;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sample-blueprint-placeholder svg {
    width: 100%;
    height: 100%;
}

.sample-blueprint-img {
    width: 100%;
    max-height: 600px;
    aspect-ratio: 0/1;
    object-fit: cover;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: block;
}

.sample-info {
    padding: 16px;
}

.sample-info h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--bg-dark);
}

.sample-info p {
    font-size: 0.8rem;
    line-height: 1.4;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    color: var(--bg-dark);
}

.carousel-btn:hover {
    background-color: var(--green-btn);
    color: var(--white);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator.active {
    background-color: var(--green-btn);
    width: 24px;
    border-radius: 4px;
}

/* 9. COMPARISON SECTION */
.comparison-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.comparison-visual {
    max-width: 900px;
    margin: 40px auto;
}

.comparison-image-container {
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.comparison-image-container span {
    position: absolute;
    left: 74.5%;
    top: 5%;
    transform: translateX(-50%);
    white-space: nowrap;

    font-family: var(--font-accent);
    font-weight: 900;
    color: var(--bg-dark);
    font-size: .85rem;
}

.comparison-image-container span:first-child {
    left: 25.5%;
}

.comparison-side {
    width: 50%;
    position: relative;
}

.side-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.comparison-side img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.grayscale {
    filter: grayscale(100%) brightness(0.6);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.comparison-column {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.comparison-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid;
    padding-bottom: 10px;
}

.bad-column h3 {
    color: var(--red-urgency);
    border-color: rgba(214, 46, 46, 0.2);
}

.good-column h3 {
    color: var(--green-highlight);
    border-color: rgba(37, 185, 91, 0.2);
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.badge-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.badge-red {
    background-color: rgba(214, 46, 46, 0.1);
    color: var(--red-urgency);
}

.badge-green {
    background-color: rgba(37, 185, 91, 0.1);
    color: var(--green-highlight);
}

/* 10. RESULT SECTION */
.result-section {
    padding: 80px 0;
    background-color: var(--white);
}

.result-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.result-image-wrapper img {
    border-radius: 20px;
    box-shadow: var(--shadow-premium);
}

.result-badge {
    background-color: rgba(37, 185, 91, 0.1);
    color: var(--green-highlight);
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.result-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.result-lead {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--bg-dark);
}

.result-list {
    list-style: none;
}

.result-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1rem;
}

.list-bullet {
    color: var(--green-btn);
    font-weight: 700;
    font-size: 1.2rem;
}

/* 11. PRODUCT PRESENTATION */
.product-presentation-section {
    padding: 80px 0 0 0;
    background-color: var(--bg-dark);
    color: var(--white);
}

.acc-badge {
    background-color: var(--gold-premium);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: var(--font-accent);
    display: inline-block;
    margin-top: 10px;
}

.product-showcase-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.element-id {
    font-family: var(--font-accent);
    color: var(--gold-premium);
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.product-showcase-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-showcase-desc {
    color: #a7c0b1;
    margin-bottom: 30px;
}

.benefits-accordion-style .benefit-item-detail {
    border-left: 2px solid var(--green-highlight);
    padding-left: 20px;
    margin-bottom: 24px;
}

.benefits-accordion-style strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.benefits-accordion-style p {
    font-size: 0.9rem;
    color: #8dafa0;
}

.large-laptop {
    width: 100%;
    max-width: 420px;
    height: 260px;
    position: relative;
    margin: 0 auto;
}

/* 12. BONUS SECTIONS */
.bonus-intro-section {
    padding: 80px 0 20px 0;
    background-color: var(--white);
}

.bonus-highlight-badge {
    background-color: var(--gold-premium);
    color: var(--bg-dark);
    padding: 8px 24px;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    font-family: var(--font-accent);
}

.bonus-intro-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.bonus-intro-subtitle {
    font-size: 1.2rem;
}

.bonus-grid-section {
    padding: 40px 0 80px 0;
    background-color: var(--white);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card {
    background: linear-gradient(135deg, #090909 0%, #133D27 100%);
    border-radius: 16px;
    padding: 30px;
    color: var(--white);
    display: flex;
    gap: 20px;
    position: relative;
    border: 1px solid rgba(216, 182, 90, 0.1);
    box-shadow: var(--shadow-premium);
}

.bonus-badge-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-accent);
    font-weight: 800;
    color: rgba(255,255,255,0.06);
    font-size: 2.5rem;
    line-height: 1;
}

.bonus-mockup {
    flex-shrink: 0;
}

.book-mini-mockup {
    width: 90px;
    height: 125px;
    background-color: var(--bg-dark);
    border-left: 4px solid var(--gold-premium);
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.book-mini-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: rgba(0,0,0,0.4);
}

.book-mini-front span {
    font-family: var(--font-accent);
    font-size: 7px;
    font-weight: 800;
    color: var(--gold-premium);
    text-align: center;
    display: block;
    text-transform: uppercase;
}

.bonus-info h3 {
    font-size: 1.15rem;
    margin: 6px 0 10px 0;
    color: var(--white);
    line-height: 1.3;
}

.bonus-info p {
    font-size: 0.85rem;
    color: #a7c2b3;
    line-height: 1.5;
}

.bonus-gold-seal {
    font-family: var(--font-accent);
    font-weight: 700;
    color: var(--gold-premium);
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    display: block;
}

.bonus-action {
    margin-top: 50px;
}

.bonus-action .btn {
    max-width: 500px;
}

/* 11. DEPOIMENTOS */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.testimonials-carousel-container {
    max-width: 700px;
    margin: 40px auto 0 auto;
    position: relative;
}

.testimonials-track-wrapper {
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.4s ease;
}

.testimonial-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--white);
}

.feedback-img {
    width: 100%;
    max-height: 607px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.carousel-nav-simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.nav-arrow-btn {
    background-color: var(--white);
    border: 1px solid rgba(0,0,0,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.nav-arrow-btn:hover {
    background-color: var(--green-btn);
    color: var(--white);
}

/* 12. PASSO A PASSO */
.steps-section {
    padding: 80px 0;
    background-color: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.step-card {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: var(--transition-smooth);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--green-btn);
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(21, 148, 71, 0.3);
}

.step-card h3 {
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    line-height: 1.3;
}

.step-card p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 13. PLANS SECTION */
.plans-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    color: var(--white);
}

.plans-section .section-title {
    color: var(--white);
}

.urgency-subtext {
    font-family: var(--font-accent);
    font-weight: 700;
    margin-top: 10px;
}

.plans-layout {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.plan-card {
    background-color: #121212;
    border-radius: 20px;
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    position: relative;
}

.plan-card.featured {
    border: 3px solid var(--gold-premium);
    box-shadow: 0 20px 40px rgba(216, 182, 90, 0.15);
    transform: scale(1.03);
    background-color: #151d18; /* Dark greenish tint for contrast */
}

.plan-badge-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold-premium);
    color: var(--bg-dark);
    font-family: var(--font-accent);
    font-weight: 900;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.plan-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 24px;
    margin-bottom: 30px;
}

.plan-type {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    display: block;
    margin-bottom: 15px;
}

.plan-pricing {
    display: flex;
    flex-direction: column;
}

.price-before {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.price-now {
    font-family: var(--font-accent);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin: 5px 0;
}

.price-sub {
    font-size: 0.85rem;
    color: #8da99a;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.check-green {
    color: var(--green-highlight);
    font-weight: 700;
}

.check-gold {
    color: var(--gold-premium);
    font-weight: 700;
}

.check-red {
    color: var(--red-urgency);
    font-weight: 700;
}

.feature-disabled {
    color: var(--text-gray);
    opacity: 0.6;
}

.plan-action {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.urgency-warning {
    font-size: 0.75rem;
    color: var(--gold-light);
    text-align: center;
    display: block;
    margin-top: 8px;
}

/* Countdown Clock Styling */
.countdown-wrapper {
    margin-bottom: 20px;
    background-color: rgba(214, 46, 46, 0.1);
    border: 1px solid rgba(214, 46, 46, 0.2);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.countdown-label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--red-urgency);
    display: block;
    margin-bottom: 6px;
}

.countdown-clock {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.clock-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.clock-unit span {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--white);
}

.clock-unit small {
    font-size: 0.6rem;
    color: var(--text-gray);
    text-transform: uppercase;
}

.clock-sep {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-top: -12px;
}

/* 14. GUARANTEE BLOCK */
.guarantee-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.guarantee-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.guarantee-badge img {
    width: 100%;
    height: 100%;
}

.guarantee-text h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.guarantee-text p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 15. INSTAGRAM SECTION */
.instagram-section {
    padding: 80px 0;
    background-color: var(--white);
}

.instagram-small {
    font-family: var(--font-accent);
    font-weight: 800;
    color: #e1306c; /* Instagram color */
    font-size: 0.85rem;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.instagram-card {
    max-width: 600px;
    margin: 40px auto 0 auto;
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
}

.instagram-card img {
    border-radius: 16px;
}

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

.insta-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-accent);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.insta-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insta-name {
    font-weight: 700;
    font-size: 1rem;
}

.insta-user {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.btn-insta-follow {
    background-color: #0095f6;
    color: var(--white);
    padding: 6px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-family: var(--font-accent);
    text-decoration: none;
    font-weight: 700;
}

.insta-bio {
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 15px;
}

.insta-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-bottom: 20px;
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--bg-dark);
}

.stat-item span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.insta-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.insta-feed-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
}

.insta-feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.insta-feed-item img:hover {
    transform: scale(1.05);
}

.btn-insta-wide {
    background-color: #fafafa;
    border: 1px solid rgba(0,0,0,0.15);
    color: var(--bg-dark);
    font-size: 0.9rem;
    padding: 12px;
}

.btn-insta-wide:hover {
    background-color: #eaeaea;
}

/* 16. FAQ SECTION */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--bg-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 500;
    transition: transform 0.3s ease;
    color: var(--text-gray);
}

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

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

.faq-answer p {
    padding: 0 24px 20px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 17. FINAL GUARANTEE SECTION */
.final-guarantee-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #090909 0%, #133D27 100%);
    color: var(--white);
}

.guarantee-huge-number {
    font-family: var(--font-accent);
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--gold-premium);
}

.guarantee-huge-label {
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 24px;
    letter-spacing: 2px;
}

.final-guarantee-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.final-guarantee-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #9cbca8;
}

.final-action .btn {
    max-width: 420px;
}

/* 18. FOOTER SECTION */
.footer-section {
    background-color: #050505;
    color: var(--text-gray);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    font-family: var(--font-accent);
    font-weight: 900;
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.footer-links {
    text-align: center;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links .sep {
    margin: 0 10px;
}

.footer-disclaimers {
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.03);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* BOTÃO FLUTUANTE MOBILE */
.mobile-floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(9, 9, 9, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-floating-bar.active {
    transform: translateY(0);
}

.floating-price {
    color: var(--white);
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-floating-action {
    padding: 10px 20px;
    font-size: 0.85rem;
    width: auto;
}

/* IMAGE MODAL */
.image-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(9, 9, 9, 0.95);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.image-modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--gold-premium);
}

.modal-content-wrapper {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.modal-img-container svg, .modal-img-container img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.modal-caption {
    font-family: var(--font-accent);
    color: var(--gold-premium);
    margin-top: 15px;
    font-size: 1.2rem;
}

/* INTERSECTION OBSERVER ANIMATION */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVENESS (BREAKPOINTS)
   ========================================================================== */

/* 1366px / 1440px / 1920px (Desktop Large & Medium) */
@media (min-width: 1200px) {
    .container {
        padding: 0;
    }
}

/* 1024px (Tablet Landscape) */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subheadline {
        font-size: 1.3rem;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .carousel-slide {
        min-width: 50%;
    }
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 24px;
    }
}

/* 768px (Tablet Portrait) */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero-content {
        text-align: center;
    }
    .hero-badge, .hero-bullets {
        align-self: center;
    }
    .bullet-item {
        justify-content: center;
    }
    .hero-action {
        margin: 0 auto;
        width: 100%;
    }
    .hero-mockup-wrapper {
        height: 350px;
    }
    .laptop {
        width: 250px;
        height: 150px;
        left: 10px;
    }
    .laptop-base {
        width: 290px;
    }
    .book-cover {
        width: 160px;
        height: 230px;
        right: 10px;
    }
    .phone {
        width: 90px;
        height: 150px;
        left: 110px;
    }
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .comparison-image-container {
        flex-direction: column;
    }
    .comparison-side {
        width: 100%;
    }
    .result-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .product-showcase-layout {
        grid-template-columns: 1fr;
    }
    .plans-layout {
        flex-direction: column;
        align-items: center;
    }
    .plan-card {
        width: 100%;
        max-width: 450px;
    }
    .plan-card.featured {
        transform: scale(1);
    }
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* Mobile: 430px / 390px / 375px / 360px */
@media (max-width: 480px) {
    h1 {
        font-size: 2rem !important;
    }
    h2 {
        font-size: 1.6rem !important;
    }
    .hero-subheadline {
        font-size: 1.15rem;
    }
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .carousel-slide {
        min-width: 100%;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .bonus-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .bonus-badge-number {
        top: 10px;
        right: 10px;
        font-size: 1.8rem;
    }
    .insta-feed-grid {
        grid-template-columns: 1fr;
    }
}
