:root {
    --bg-white: #ffffff;
    --text-main: #171717;
    --text-muted: #525252;
    --accent: #ccf32f; /* Lime green from Condor reference */
    --accent-dark: #bce325;
    --dark: #000000;
    
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f5f5f5;
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 1.125rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent);
    border-radius: 50%;
}

.nav-links {
    display: none;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 1rem;
        font-weight: 500;
        color: var(--text-muted);
        font-size: 0.85rem;
    }
    
    .nav-links a {
        text-decoration: none;
        color: inherit;
        transition: color 0.2s;
        white-space: nowrap;
    }
    
    .nav-links a:hover {
        color: var(--dark);
    }
}

@media (min-width: 1024px) {
    .nav-links {
        gap: 1.75rem;
        font-size: 0.95rem;
    }
}

/* Buttons */
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--dark);
    color: var(--bg-white);
    padding: 0.625rem 1.25rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn-dark:hover {
    background-color: #262626;
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
    font-weight: 500;
    text-decoration: none;
}

.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: serif;
    font-size: 0.875rem;
}

/* Hero Section */
.hero {
    padding: 1rem 1rem;
    width: 100%;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-box {
    background-color: var(--accent);
    border-radius: 2.5rem;
    padding: 3rem 2rem;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .hero-box {
        padding: 4rem;
        min-height: 750px;
        display: block; /* to allow absolute positioning of the visual */
    }
}

/* Left Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 550px;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .hero-content {
        margin-top: 4rem;
    }
}

.headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.subtitle {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 450px;
}

@media (min-width: 768px) {
    .subtitle {
        font-size: 1.25rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

@media (min-width: 500px) {
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
}

/* Right Visual */
.hero-visual {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    position: relative;
}

@media (min-width: 768px) {
    .hero-visual {
        position: absolute;
        top: 50%;
        right: 3rem; 
        transform: translateY(-50%) scale(0.95);
        margin-top: 0;
    }
}

.mockup-container {
    position: relative;
    width: 320px;
    height: 550px;
    z-index: 10;
    animation: floatPhone 6s ease-in-out infinite;
}

.mockup-main {
    width: 300px;
    height: 600px;
    background-color: var(--bg-white); /* White background for Insta UI */
    border-radius: 3rem;
    border: 10px solid var(--dark);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    color: var(--dark);
    display: flex;
    flex-direction: column;
}

/* Simulate phone notch */
.mockup-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 24px;
    background-color: var(--dark);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.mockup-header {
    padding: 2.5rem 1.5rem 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.mockup-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Instagram UI specific styling */
.insta-ui {
    padding: 1rem;
    gap: 1rem;
    display: flex;
    flex-direction: column;
    animation: autoScroll 12s ease-in-out infinite;
}

.insta-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.insta-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 2px;
}

.avatar-img {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="%23ccc" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="8" r="4"/><path d="M4 20c0-4 4-7 8-7s8 3 8 7"/></svg>');
    background-size: cover;
}

.insta-stats {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: space-around;
}

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

.stat .num { font-weight: 700; font-size: 0.875rem; }
.stat .lbl { font-size: 0.65rem; color: var(--text-muted); }

.insta-bio {
    font-size: 0.75rem;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bio-name { font-weight: 600; }

.bio-link a { color: #00376b; text-decoration: none; font-weight: 600;}

.insta-btn {
    width: 100%;
    padding: 0.5rem;
    background-color: #efefef;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
}

.insta-tabs {
    display: flex;
    border-top: 1px solid #eee;
    margin-top: 0.5rem;
}

.tab {
    flex: 1;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab.active {
    border-top: 1px solid var(--dark);
}

.tab::after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #ccc;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>') no-repeat center;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="7" height="7"/><rect x="14" y="3" width="7" height="7"/><rect x="14" y="14" width="7" height="7"/><rect x="3" y="14" width="7" height="7"/></svg>') no-repeat center;
}
.tab.active::after { background-color: var(--dark); }

.insta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 0 -1rem; /* extend beyond padding */
}

.grid-item {
    aspect-ratio: 1;
    background-color: #efefef;
    position: relative;
}

/* Analysis Overlays */
.warning-box {
    position: relative;
    border: 2px dashed #f59e0b; /* Amber */
    padding: 2px;
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.05);
}

.error-box {
    position: relative;
    border: 2px dashed #ef4444; /* Red */
    padding: 2px;
    border-radius: 4px;
    background: rgba(239, 68, 68, 0.05);
}

.tooltip-alert {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%) translateX(10px);
    background: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 0.65rem;
    font-weight: 600;
    width: 140px;
    z-index: 40;
    border: 1px solid #eee;
    color: var(--dark);
}

.tooltip-alert::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: white;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.grid-item .tooltip-alert {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    padding: 0.35rem 0.1rem;
}

.grid-item .tooltip-alert::before {
    display: none;
}

/* Floating Mockup Card */
.mockup-secondary {
    position: absolute;
    bottom: 10px;
    left: -40px;
    background-color: var(--bg-white);
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 30;
    width: 250px;
}

.mockup-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.card-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Animations */
@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes autoScroll {
    0%, 10% { transform: translateY(0); }
    40%, 60% { transform: translateY(-120px); }
    90%, 100% { transform: translateY(0); }
}

/* Common Section Styling */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .section-container {
        padding: 6rem 2rem;
    }
}

.section-title {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.badge-warning {
    background-color: #fef3c7;
    color: #b45309;
    border: 1px solid #fde68a;
}

.badge-dark {
    background-color: var(--dark);
    color: var(--bg-white);
}

.badge-accent {
    background-color: var(--accent);
    color: var(--dark);
}

/* Section 2: Dores */
.section-dores {
    background-color: var(--dark);
    background-image: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('./img/bg-dores.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    width: calc(100% - 2rem);
    max-width: 1280px;
    margin: 0 auto 2rem auto;
    border-radius: 2.5rem;
}

.section-dores::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204,243,47,0.06) 0%, rgba(0,0,0,0) 60%);
    border-radius: 50%;
    pointer-events: none;
}

.dores-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 10;
}

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

.section-dores .section-subtitle {
    color: #a3a3a3;
    margin: 0 auto;
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.dor-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.5rem;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s, border-color 0.3s;
}

.dor-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.05);
}

.dor-card.error-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
}

.dor-card.warning-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
}

.dor-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.error-icon {
    background: rgba(239, 68, 68, 0.1);
    border: 1px dashed #ef4444;
}

.warning-icon {
    background: rgba(245, 158, 11, 0.1);
    border: 1px dashed #f59e0b;
}

.dor-content {
    flex: 1;
}

.dor-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.error-card .dor-label {
    color: #ef4444;
}

.warning-card .dor-label {
    color: #f59e0b;
}

.dor-text {
    font-size: 1rem;
    color: #e5e5e5;
    line-height: 1.4;
    font-weight: 400;
    font-style: italic;
}

/* Section 3: Diferenciacao */
.section-diferenca {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f5f5f5;
}

.diferenca-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .diferenca-row {
        flex-direction: row;
        gap: 3rem;
    }
}

.diferenca-col {
    flex: 1;
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .diferenca-col {
        padding: 3.5rem 3rem;
    }
}

.diff-robot {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}

.diff-regra {
    background-color: var(--dark);
    color: var(--bg-white);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.diff-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 1.5rem;
}

.diff-regra .diff-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.diff-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.diff-price {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.diff-robot .diff-price {
    background-color: #e5e7eb;
    color: #4b5563;
}

.diff-regra .diff-price {
    background-color: var(--accent);
    color: var(--dark);
}

.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
    padding: 0;
}

.diff-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.diff-list li::before {
    position: absolute;
    left: 0;
    top: 1px;
    font-weight: bold;
    font-size: 1.1rem;
}

.diff-list li.item-no {
    color: #4b5563;
}

.diff-list li.item-no::before {
    content: '✕';
    color: #ef4444;
}

.diff-regra .diff-list li.item-yes {
    color: #e5e7eb;
}

.diff-regra .diff-list li.item-yes::before {
    content: '✓';
    color: var(--accent);
}

.diferenca-footer {
    text-align: center;
    margin-top: 3.5rem;
}

.highlight-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Section 4: Entregaveis */
.section-entregaveis {
    background-color: #fbfbfc;
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: center;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    overflow: hidden;
}

.section-entregaveis::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(204,243,47,0.12) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.entregavel-card {
    background-color: var(--bg-white);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    display: flex;
    flex-direction: column;
}

.entregavel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px -10px rgba(0, 0, 0, 0.08);
}

.entregavel-image-container {
    width: 100%;
    height: 180px;
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.entregavel-card.highlight-card .entregavel-image-container {
    border-color: rgba(255, 255, 255, 0.1);
}

.entregavel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.entregavel-card:hover .entregavel-img {
    transform: scale(1.05);
}

.entregavel-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.entregavel-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.entregavel-card.highlight-card {
    background-color: var(--dark);
    color: var(--bg-white);
    border-color: var(--accent);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
}

.entregavel-card.highlight-card h3 {
    color: var(--bg-white);
}

.entregavel-card.highlight-card .entregavel-desc {
    color: #a3a3a3;
}

/* Section 5: Timeline */
.section-timeline {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f5f5f5;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 15px;
    width: 2px;
    background-color: #e5e7eb;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 15px;
    width: 2px;
    background-color: var(--accent);
    height: var(--timeline-height, 0%);
    max-height: calc(100% - 10px);
    transition: height 0.1s ease-out;
    z-index: 1;
}

.timeline-item {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -17px;
    top: 2px;
    transform: translateX(-50%) scale(0.9);
    background-color: #f3f4f6;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    border: 2px solid var(--bg-white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.timeline-item.active .timeline-badge {
    background-color: var(--accent);
    color: var(--dark);
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(204, 243, 47, 0.4);
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section 6: Depoimentos */
.section-depoimentos {
    background-color: #fbfbfc;
    border-bottom: 1px solid #f5f5f5;
}

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

.depoimento-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
}

.depoimento-rating {
    color: #eab308;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.depoimento-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-user {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #f1f5f9;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
}

.user-company {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}

/* Section 7: Garantias */
.section-garantias {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f5f5f5;
}

.garantias-row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .garantias-row {
        flex-direction: row;
        gap: 2.5rem;
        justify-content: center;
    }
}

.garantia-box {
    flex: 1;
    max-width: 600px;
    width: 100%;
    background-color: var(--dark);
    color: var(--bg-white);
    border-radius: 2rem;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .garantia-box {
        padding: 3.5rem 3rem;
    }
}

.garantia-badge {
    background-color: var(--accent);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.garantia-box h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.garantia-box p {
    font-size: 0.95rem;
    color: #a3a3a3;
    line-height: 1.6;
}

/* Section 8: Oferta / Preco */
.section-preco {
    background-color: #fbfbfc;
    border-bottom: 1px solid #f5f5f5;
}

.preco-card {
    display: flex;
    flex-direction: column;
    background-color: var(--dark);
    color: var(--bg-white);
    border-radius: 2.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .preco-card {
        flex-direction: row;
    }
}

.preco-left {
    flex: 1.4;
    padding: 3rem 2rem;
}

@media (min-width: 768px) {
    .preco-left {
        padding: 4rem 3.5rem;
    }
}

.offer-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--accent);
    border: 1px solid rgba(204, 243, 47, 0.25);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.preco-left h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: #ffffff;
}

.preco-left p {
    font-size: 1rem;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.preco-deliverables {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.preco-deliverables li {
    font-size: 0.9rem;
    color: #e5e5e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preco-right {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .preco-right {
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: 4rem 3rem;
    }
}

.preco-box {
    width: 100%;
    max-width: 280px;
}

.payment-type {
    font-size: 0.75rem;
    color: #a3a3a3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.value-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0.5rem 0 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-right: 0.25rem;
    margin-top: 0.5rem;
}

.price-val {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.payment-sub {
    font-size: 0.8rem;
    color: #a3a3a3;
    margin-bottom: 1.5rem;
}

.btn-preco {
    display: block;
    width: 100%;
    background-color: var(--accent);
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    padding: 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-preco:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 10px 20px -5px rgba(204, 243, 47, 0.35);
}

.btn-preco:active {
    transform: scale(0.98);
}

.secure-checkout {
    font-size: 0.7rem;
    color: #737373;
}

/* Section 9: FAQ */
.section-faq {
    background-color: var(--bg-white);
    border-bottom: 1px solid #f5f5f5;
}

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

.faq-item {
    border-bottom: 1px solid #f3f4f6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    padding: 1.5rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    font-family: var(--font-sans);
}

.faq-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%23171717" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="6 9 12 15 18 9"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    margin-left: 1rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 0.5rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Section 10: CTA Final */
.section-cta-final {
    background-color: var(--bg-white);
}

.cta-final-box {
    background-color: var(--dark);
    color: var(--bg-white);
    padding: 4rem 2rem;
    border-radius: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .cta-final-box {
        padding: 6rem 4rem;
    }
}

.cta-final-box h2 {
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    max-width: 800px;
}

.cta-final-box p {
    font-size: 1.1rem;
    color: #a3a3a3;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.btn-accent-large {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent);
    color: var(--dark);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-accent-large:hover {
    background-color: var(--accent-dark);
    box-shadow: 0 10px 20px -5px rgba(204, 243, 47, 0.35);
}

.btn-accent-large:active {
    transform: scale(0.98);
}

.cta-secure {
    font-size: 0.8rem;
    color: #737373;
    margin-top: 1.5rem;
}

