/*
Theme Name: NexusCar
Theme URI: https://nexuscar.com.br
Author: NexusCar
Description: Landing page para NexusCar - AutomaÃ§Ã£o com IA para lojas de veÃ­culos
Version: 1.0.0
*/

/* ===== CSS Variables ===== */
:root {
    --primary: #4a3cb9;
    --primary-light: #6b5dd3;
    --primary-dark: #3a2e99;
    --background: #0a0a0f;
    --background-light: #12121a;
    --foreground: #ffffff;
    --foreground-muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.1);
    --card: rgba(255, 255, 255, 0.05);
    --gradient-primary: linear-gradient(135deg, #4a3cb9 0%, #6b5dd3 50%, #8b7cf3 100%);
    --gradient-text: linear-gradient(135deg, #4a3cb9, #8b7cf3, #4a3cb9);
    --shadow-glow: 0 0 40px rgba(74, 60, 185, 0.3);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Utilities ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(74, 60, 185, 0.5);
}

.btn-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    box-shadow: var(--shadow-glow);
}

.btn-hero:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 60px rgba(74, 60, 185, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: var(--foreground-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--foreground);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta > a:first-child {
    color: var(--foreground-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.header-cta > a:first-child:hover {
    color: var(--foreground);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    color: var(--foreground-muted);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--foreground);
}

@media (max-width: 768px) {
    .nav, .header-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 60, 185, 0.2);
    border: 1px solid rgba(74, 60, 185, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--foreground-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--foreground-muted);
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== Problem Section ===== */
.problem {
    background: var(--background-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-4px);
}

.problem-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--foreground-muted);
    font-size: 0.9rem;
}

.problem-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.problem-stat span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ef4444;
}

.problem-stat span:last-child {
    font-size: 0.8rem;
    color: var(--foreground-muted);
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Solution Section ===== */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.solution-feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.solution-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    background: rgba(74, 60, 185, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}

.solution-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.solution-feature p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.solution-mockup {
    background: linear-gradient(135deg, rgba(74, 60, 185, 0.1), rgba(74, 60, 185, 0.05));
    border: 1px solid var(--border);
    border-radius: 2rem;
    padding: 2rem;
}

.whatsapp-chat {
    background: #0b141a;
    border-radius: 1rem;
    overflow: hidden;
}

.whatsapp-header {
    background: #1f2c34;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.whatsapp-status {
    font-size: 0.75rem;
    color: #25d366;
}

.whatsapp-messages {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    max-width: 85%;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
}

.message-received {
    background: #1f2c34;
    border-bottom-left-radius: 0.25rem;
    align-self: flex-start;
}

.message-sent {
    background: #005c4b;
    border-bottom-right-radius: 0.25rem;
    align-self: flex-end;
}

.message-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .solution-mockup {
        order: -1;
    }
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--background-light);
}

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

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(74, 60, 185, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    color: var(--primary-light);
}

.step-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Benefits Section ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(74, 60, 185, 0.1), transparent);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: scale(1.05);
}

.benefit-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.benefit-label {
    font-size: 0.9rem;
    color: var(--foreground-muted);
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Differentials Section ===== */
.differentials {
    background: var(--background-light);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.differential-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.differential-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.differential-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.differential-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.differential-card p {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

@media (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Social Proof Section ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    color: #facc15;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--foreground-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.testimonial-role {
    font-size: 0.8rem;
    color: var(--foreground-muted);
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground-muted);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA Section ===== */
.cta {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 60, 185, 0.2), transparent);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(74, 60, 185, 0.1), rgba(74, 60, 185, 0.05));
    border: 1px solid var(--border);
    border-radius: 2rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.75rem;
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--background-light);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    color: var(--foreground-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    max-width: 300px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    color: var(--foreground-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    color: var(--foreground-muted);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--foreground-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--background-light);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 450px;
    width: 100%;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--foreground-muted);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--foreground);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-input::placeholder {
    color: var(--foreground-muted);
}

/* Modal Success */
.modal-success {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.success-days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.success-message {
    color: var(--foreground-muted);
    margin-bottom: 2rem;
}

/* ===== Animations ===== */
.fade-in {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== SEÇÃO DE PREÇOS - FIX FINAL ===== */
#precos {
    background-color: var(--background) !important;
    padding: 80px 0;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .pricing-slider { background-color: var(--primary); }
input:checked + .pricing-slider:before { transform: translateX(24px); }

/* Grid de 3 Colunas */
.pricing-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    align-items: stretch;
}

/* Card Branco Estilo Imagem */
.pricing-card {
    background: #ffffff !important; /* Fundo branco conforme a foto */
    color: #0a0a0f !important;    /* Texto escuro para contraste */
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 10px 30px rgba(74, 60, 185, 0.3);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-box { margin: 25px 0; }
.price-box .amount { font-size: 36px; font-weight: 800; }
.price-box .currency, .price-box .period { font-size: 14px; color: #666; }

.pricing-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 !important;
    text-align: left;
    flex-grow: 1;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #333;
}

.pricing-list li i { color: var(--primary); flex-shrink: 0; }

/* Botões nos Cards */
.pricing-card .btn {
    width: 100%;
    border-radius: 10px;
}

/* Responsividade */
@media (max-width: 991px) {
    .pricing-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
    .pricing-card.featured { transform: scale(1); }
}
/* ===== FIX PARA MOBILE ===== */

/* Garante que nada escape das bordas da tela */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Corta qualquer conteúdo que tente "vazar" lateralmente */
    position: relative;
}

@media (max-width: 768px) {
    /* Ajusta o container para ocupar quase toda a tela */
    .container {
        padding: 0 1rem;
        width: 100%;
    }

    /* Corrige o alinhamento da seção Hero no mobile */
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem; /* Diminui um pouco para não quebrar feio */
        line-height: 1.2;
    }

    /* Garante que os botões não fiquem gigantes ou desalinhados */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* Ajuste da seção de preços que adicionamos antes */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 20px;
    }

    .pricing-card {
        width: 100% !important;
        max-width: 350px; /* Limita a largura para não ficar esticado demais */
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1); /* No mobile é melhor não dar zoom no card destaque */
    }

    /* Ajuste das orbs de fundo que podem causar o deslocamento */
    .hero-orb {
        display: none; /* Esconder as esferas no mobile resolve 90% dos problemas de alinhamento */
    }
}
/* ===== FIX PARA MOBILE ===== */

/* Garante que nada escape das bordas da tela */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Corta qualquer conteúdo que tente "vazar" lateralmente */
    position: relative;
}

@media (max-width: 768px) {
    /* Ajusta o container para ocupar quase toda a tela */
    .container {
        padding: 0 1rem;
        width: 100%;
    }

    /* Corrige o alinhamento da seção Hero no mobile */
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.8rem; /* Diminui um pouco para não quebrar feio */
        line-height: 1.2;
    }

    /* Garante que os botões não fiquem gigantes ou desalinhados */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-buttons .btn {
        width: 100% !important;
        margin-bottom: 10px;
    }

    /* Ajuste da seção de preços que adicionamos antes */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 20px;
    }

    .pricing-card {
        width: 100% !important;
        max-width: 350px; /* Limita a largura para não ficar esticado demais */
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: scale(1); /* No mobile é melhor não dar zoom no card destaque */
    }

    /* Ajuste das orbs de fundo que podem causar o deslocamento */
    .hero-orb {
        display: none; /* Esconder as esferas no mobile resolve 90% dos problemas de alinhamento */
    }
}
/* Ajuste da Nova Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-logo-img {
    height: 45px; /* Altura ideal para alinhar com os itens do menu */
    width: auto;  /* Mantém a proporção da imagem */
    display: block;
    object-fit: contain;
}

/* Ajuste para Mobile */
@media (max-width: 768px) {
    .header-logo-img {
        height: 38px; /* Reduz levemente no celular para caber melhor */
    }
}