/*
Theme Name: GLOBAL NEXUS - IMOBI XPERIENCE 2026
Theme URI: https://globalnexus.com.br
Author: Global Nexus
Author URI: https://globalnexus.com.br
Description: Tema WordPress para o evento IMOBI XPERIENCE 2026 - Evento presencial para corretores de imóveis e donos de imobiliárias em Teresina-PI
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: trafego-imobi
Tags: one-page, custom-colors, full-width-template, landing-page

== Description ==
Tema exclusivo para landing page do evento IMOBI XPERIENCE 2026.
Foco em vendas imobiliárias, marketing e atendimento estruturado.
*/

/* ========================================
   CSS VARIABLES / DESIGN TOKENS
======================================== */
:root {
    /* Colors - Gold & Dark Theme */
    --color-background: hsl(0, 0%, 7%);
    --color-foreground: hsl(0, 0%, 98%);
    --color-card: hsl(0, 0%, 10%);
    --color-card-foreground: hsl(0, 0%, 98%);
    --color-primary: hsl(43, 74%, 49%);
    --color-primary-foreground: hsl(0, 0%, 5%);
    --color-secondary: hsl(0, 0%, 15%);
    --color-secondary-foreground: hsl(0, 0%, 98%);
    --color-muted: hsl(0, 0%, 15%);
    --color-muted-foreground: hsl(0, 0%, 65%);
    --color-accent: hsl(43, 74%, 49%);
    --color-accent-foreground: hsl(0, 0%, 5%);
    --color-border: hsl(0, 0%, 18%);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, hsl(43, 74%, 49%) 0%, hsl(38, 92%, 60%) 50%, hsl(43, 74%, 49%) 100%);
    --gradient-gold-solid: linear-gradient(135deg, hsl(43, 74%, 40%) 0%, hsl(43, 74%, 55%) 100%);
    
    /* Shadows */
    --shadow-gold: 0 4px 30px hsla(43, 74%, 49%, 0.35);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    
    /* Typography */
    --font-display: 'Montserrat', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    /* Spacing */
    --section-padding: 4rem 0;
    --section-padding-lg: 6rem 0;
    --container-max-width: 1200px;
    --container-padding: 1rem;
}

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

/* ========================================
   RESET & BASE STYLES
======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-foreground);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-muted-foreground);
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 40px hsla(43, 74%, 49%, 0.5);
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

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

/* ========================================
   CARDS
======================================== */
.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: hsla(43, 74%, 49%, 0.5);
}

/* ========================================
   BADGES
======================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    background: hsla(43, 74%, 49%, 0.1);
    border: 1px solid hsla(43, 74%, 49%, 0.4);
    color: var(--color-primary);
}

.badge .pulse {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* ========================================
   SECTIONS
======================================== */
.section {
    padding: var(--section-padding);
}

@media (min-width: 768px) {
    .section {
        padding: var(--section-padding-lg);
    }
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 0 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    opacity: 0.2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, 
        hsla(0, 0%, 7%, 0.9),
        hsla(0, 0%, 7%, 0.95),
        hsl(0, 0%, 7%)
    );
}

.hero-glow {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: hsla(43, 74%, 49%, 0.15);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-logo {
    width: 8rem;
    height: auto;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .hero-logo {
        width: 10rem;
    }
}

.hero-headline {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-headline {
        font-size: 1.875rem;
    }
}

@media (min-width: 768px) {
    .hero-headline {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }
}

.hero-subheadline {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-subheadline {
        font-size: 1.5rem;
    }
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-card);
    border: 1px solid hsla(43, 74%, 49%, 0.3);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

/* ========================================
   PROBLEM SECTION
======================================== */
.problem-list {
    list-style: none;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    color: #ef4444;
}

/* ========================================
   LEARN SECTION (Bullets)
======================================== */
.learn-list {
    list-style: none;
    max-width: 42rem;
    margin: 0 auto 2rem;
    display: grid;
    gap: 1rem;
}

.learn-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

.learn-list .check-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
    margin-top: 0.125rem;
}

/* ========================================
   AUDIENCE SECTION
======================================== */
.audience-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
}

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

.audience-card {
    padding: 1.5rem;
}

.audience-card.for-you {
    border-color: hsla(142, 76%, 36%, 0.5);
}

.audience-card.not-for-you {
    border-color: hsla(0, 84%, 60%, 0.3);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

/* ========================================
   SPEAKERS CAROUSEL
======================================== */
.speakers-carousel {
    overflow: hidden;
    cursor: grab;
}

.speakers-carousel:active {
    cursor: grabbing;
}

.speakers-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.speaker-card {
    flex: 0 0 85%;
    min-width: 0;
}

@media (min-width: 640px) {
    .speaker-card {
        flex: 0 0 45%;
    }
}

@media (min-width: 1024px) {
    .speaker-card {
        flex: 0 0 30%;
    }
}

.speaker-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
    background: var(--color-muted);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.speaker-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-card), transparent);
}

.speaker-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: hsla(43, 74%, 49%, 0.9);
    color: var(--color-primary-foreground);
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
}

.speaker-info {
    padding: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.speaker-name {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.speaker-role {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.speaker-desc {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: hsla(0, 0%, 65%, 0.3);
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 1.5rem;
    background: var(--color-primary);
}

/* ========================================
   EXPERIENCE SECTION
======================================== */
.experience-list {
    list-style: none;
    max-width: 42rem;
    margin: 0 auto 2rem;
}

.experience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.experience-list .star-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-primary);
}

.experience-highlight {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    max-width: 42rem;
    margin: 2rem auto 0;
    text-align: center;
}

/* ========================================
   EVENT DETAILS
======================================== */
.event-details-grid {
    display: grid;
    gap: 1rem;
    max-width: 42rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.event-detail-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
}

.event-detail-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsla(43, 74%, 49%, 0.1);
    border-radius: 0.75rem;
    color: var(--color-primary);
}

/* ========================================
   FINAL CTA
======================================== */
.final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--color-background), var(--color-card));
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: hsla(43, 74%, 49%, 0.15);
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.final-cta-headline {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .final-cta-headline {
        font-size: 3rem;
    }
}

.final-cta-highlight {
    background: hsla(43, 74%, 49%, 0.1);
    border: 1px solid hsla(43, 74%, 49%, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2.5rem 0;
}

/* ========================================
   STICKY CTA (Mobile)
======================================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 1rem;
    background: hsla(0, 0%, 7%, 0.9);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

.sticky-cta .btn {
    width: 100%;
}

/* ========================================
   MODAL / POPUP
======================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: hsla(0, 0%, 0%, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 100%;
    max-width: 28rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 1.5rem;
    transform: scale(0.95) translateY(10px);
    transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    color: var(--color-muted-foreground);
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: var(--color-muted);
    color: var(--color-foreground);
}

.modal-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.modal-desc {
    text-align: center;
    color: var(--color-muted-foreground);
    margin-bottom: 1.5rem;
}

/* ========================================
   FORMS
======================================== */
.form-group {
    margin-bottom: 1rem;
}

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

.form-input-wrapper {
    position: relative;
}

.form-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: var(--color-muted-foreground);
}

.form-input {
    width: 100%;
    height: 3rem;
    padding: 0 1rem 0 2.5rem;
    font-size: 1rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    color: var(--color-foreground);
    transition: all 0.2s ease;
}

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

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px hsla(43, 74%, 49%, 0.2);
}

.form-input.error {
    border-color: #ef4444;
}

.form-error {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 0.25rem;
}

.form-secure {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    margin-top: 1rem;
}

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

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }

/* ========================================
   RESPONSIVE UTILITIES
======================================== */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hide-desktop {
        display: none !important;
    }
}

/* ========================================
   WORDPRESS SPECIFIC
======================================== */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}


/* Pricing Section Custom Styles */
.pricing-grid {
    display: grid;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

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

.pricing-card {
    background: #0a0a0a;
    border: 1px solid #262626;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.vip {
    border: 1px solid #b38e2d;
    box-shadow: 0 0 25px rgba(179, 142, 45, 0.2);
}

.pricing-header {
    background: var(--gradient-gold);
    padding: 1rem;
    text-align: center;
}

.pricing-header h3 {
    color: #000;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.pricing-body {
    padding: 2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Preços */
.price-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-old {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.price-current {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--color-primary);
    margin: 0.5rem 0;
}

.price-current .currency { font-size: 1.2rem; font-weight: 700; }
.price-current .amount { font-size: 3.5rem; font-weight: 800; line-height: 1; }

.price-badge {
    background: #1a1a00;
    color: var(--color-primary);
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-weight: 700;
}

/* Listas */
.features-title { font-size: 0.8rem; color: #888; margin-bottom: 1rem; font-weight: 600; }

.pricing-features ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-features li { 
    display: flex; 
    gap: 0.75rem; 
    font-size: 0.9rem; 
    margin-bottom: 0.75rem; 
    line-height: 1.4;
    color: #e5e5e5;
}

.pricing-features li svg { width: 14px; color: var(--color-primary); flex-shrink: 0; margin-top: 3px; }

/* Kit Box */
.kit-box {
    background: #111;
    border: 1px solid #222;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.kit-title { color: var(--color-primary); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.kit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; font-size: 0.75rem; color: #aaa; }

.pricing-image { margin-bottom: 1.5rem; border-radius: 8px; overflow: hidden; }

.pricing-footer-text, .vip-intro, .vip-footer-desc {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* VIP Específicos */
.vip-tag {
    position: absolute;
    top: 0; right: 0;
    background: #b38e2d;
    color: #000;
    font-size: 0.65rem;
    padding: 2px 8px;
    border-bottom-left-radius: 8px;
    font-weight: 800;
    z-index: 10;
}

.vip-limit {
    background: #141400;
    border: 1px solid #333;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.vip-alert {
    background: #1a0505;
    border: 1px solid #3d0000;
    color: #ff4d4d;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.btn-pricing-gold {
    background: var(--gradient-gold);
    color: #000;
    width: 100%;
    margin-top: auto;
    font-weight: 800;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(179, 142, 45, 0.4);
}
.header-logo, .hero-logo {
    max-width: 250px; /* Ajuste o tamanho conforme preferir */
    height: auto;
    object-fit: contain;
    border-radius: 8px; /* Opcional: arredonda levemente as bordas da imagem */
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 180px;
    }
}

/* Garante que todos os itens da lista tenham o mesmo espaçamento */
.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0; /* Remove margens laterais e controla a inferior do bloco */
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem; /* Espaçamento uniforme entre cada linha */
    line-height: 1.4;
    color: #e5e5e5;
}

.pricing-features li:last-child {
    margin-bottom: 0; /* Remove o espaço extra no último item */
}

.pricing-features li svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--color-primary); /* Dourado */
}
/* --- DESTAQUE DA LOGO --- */
.hero-logo {
    width: 100% !important;
    max-width: 400px !important; /* Tamanho ampliado para maior destaque */
    height: auto !important;
    margin: 0 auto 2.5rem !important;
    display: block !important;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2)); /* Brilho dourado sutil */
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 250px !important; /* Tamanho ajustado para celular */
    }
}
/* --- AJUSTE DA LOGO DE FUNDO (MARCA D'ÁGUA) --- */
.hero-bg {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.15 !important; /* Deixa a logo sombreada/suave */
    z-index: 0 !important;
}

.hero-bg img {
    width: 80% !important; /* Aumenta o tamanho da logo de fundo */
    max-width: 900px !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 0.2 !important; /* Controle fino da transparência */
    filter: blur(2px); /* Opcional: leve desfoque para não brigar com o texto */
}

/* Garante que o conteúdo (texto e logo principal) fique acima do fundo */
.hero-content {
    position: relative !important;
    z-index: 10 !important;
}

/* Remove a logo duplicada que estava "colada" atrás da logo principal */
.hero-bg::after {
    display: none !important;
}
/* --- REDUÇÃO DE ESPAÇO: LOGO E TEXTO --- */
.hero-content .hero-logo {
    margin-bottom: 0.5rem !important; /* Reduz drasticamente o espaço abaixo da logo */
}

.hero-content .badge {
    margin-top: 0 !important;
    margin-bottom: 1rem !important; /* Ajusta o respiro entre o badge e o título principal */
}

.hero-headline {
    margin-top: 0 !important; /* Remove qualquer margem superior que empurre o texto para baixo */
}

/* Ajuste fino para Mobile */
@media (max-width: 768px) {
    .hero-content .hero-logo {
        margin-bottom: 0.2rem !important;
    }
}