@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   DESIGN SYSTEM & VARIABLES
   ========================================== */
:root {
    --font-primary: 'Outfit', sans-serif;
    
    /* Theme Transition */
    --theme-transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Common Colors */
    --color-gold: #f59e0b; /* Yellow/Gold Accent */
    --color-gold-hover: #d97706;
    --color-blue: #2563eb;
    --color-blue-hover: #1d4ed8;
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba5a;
    
    /* Dark Theme (Default) */
    --bg-main: #0b0f19;
    --bg-surface: #111827;
    --bg-surface-elevated: #1f2937;
    --bg-nav: rgba(11, 15, 25, 0.75);
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --shadow-main: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --glass-bg: rgba(17, 24, 39, 0.6);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glow-opacity: 0.15;
}

[data-theme="light"] {
    /* Light Theme */
    --bg-main: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #f1f5f9;
    --bg-nav: rgba(248, 250, 252, 0.8);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.08);
    --border-hover: rgba(15, 23, 42, 0.15);
    --shadow-main: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.05);
    --glow-opacity: 0.05;
}

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

html, body {
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    position: relative;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    transition: var(--theme-transition);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--theme-transition);
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Grid & Flex Utilities */
.grid {
    display: grid;
    gap: 30px;
}

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

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

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

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

@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header .tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-blue);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

[data-theme="light"] .section-header .tag {
    background: rgba(37, 99, 235, 0.08);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .section-header {
        margin-bottom: 40px;
    }
}

/* ==========================================
   COMPONENTS
   ========================================== */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Glass reflection shine sweep animation */
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.4) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: btnShineSweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes btnShineSweep {
    0% {
        left: -75%;
    }
    12% {
        left: 125%;
    }
    100% {
        left: 125%;
    }
}

.btn-primary {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9) 0%, rgba(217, 119, 6, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #0b0f19;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 1) 0%, rgba(217, 119, 6, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .btn-secondary {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.06) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.03), inset 0 1px 1px rgba(255, 255, 255, 0.7);
}

[data-theme="light"] .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.04) 100%);
    border-color: rgba(15, 23, 42, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.9) 0%, rgba(18, 140, 126, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 1) 0%, rgba(18, 140, 126, 0.9) 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-main);
    transition: var(--theme-transition), transform 0.3s ease;
}

.glass-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
}

/* Float blurs background decorative items */
.bg-blur-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -1;
}

.blur-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: var(--glow-opacity);
    pointer-events: none;
    transition: var(--theme-transition);
}

.blob-primary {
    background: var(--color-gold);
    width: 300px;
    height: 300px;
}

.blob-secondary {
    background: var(--color-blue);
    width: 400px;
    height: 400px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.header-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-nav.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    transition: height 0.3s ease;
}

.header-nav.scrolled .nav-container {
    height: 70px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

.header-nav.scrolled .logo-img {
    height: 38px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-item {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    color: var(--text-secondary);
}

.nav-item:hover, .nav-item.active {
    color: var(--text-primary);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle Button */
.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--theme-transition);
}

.theme-toggle:hover {
    transform: scale(1.05);
    background: var(--border-color);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.5s ease;
}

/* Light theme shows sun, dark theme shows moon */
.theme-toggle .sun-icon {
    display: none;
}

[data-theme="light"] .theme-toggle .sun-icon {
    display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
    display: none;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--bg-surface);
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        padding: 40px;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-actions {
        margin-top: 20px;
        flex-direction: column;
        width: 100%;
    }
    
    .nav-actions .btn {
        width: 100%;
    }
    
    /* Menu active states for mobile hamburger */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .reveal-left {
        transform: translateY(20px);
    }
    .reveal-left.active {
        transform: translateY(0);
    }
    .reveal-right {
        transform: translateY(20px);
    }
    .reveal-right.active {
        transform: translateY(0);
    }
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* ==========================================
   PAGES SPECIFIC STYLES
   ========================================== */

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: saturate(0.8) contrast(1.1) brightness(0.9);
    transition: var(--theme-transition);
}

[data-theme="light"] .hero-video {
    opacity: 0.22;
    filter: saturate(0.5) contrast(0.9) brightness(1.1) grayscale(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0.2) 0%, var(--bg-main) 80%);
    transition: var(--theme-transition);
}

[data-theme="light"] .hero-overlay {
    background: radial-gradient(circle at center, rgba(248, 250, 252, 0.2) 0%, var(--bg-main) 85%);
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border-color) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
    opacity: 0.65;
    transition: var(--theme-transition);
}

.hero-content {
    max-width: 650px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.hero-stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.hero-stat-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    z-index: 10;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-main);
    border: 1px solid var(--glass-border);
    animation: floatAnim 6s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-badge {
    position: absolute;
    padding: 16px 24px;
    border-radius: 16px;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-badge-1 {
    top: 12%;
    right: -5%;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255,255,255,0.08);
    color: #ffffff;
}

[data-theme="light"] .hero-badge-1 {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(15, 23, 42, 0.08);
    color: var(--text-primary);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .hero-badge-1 .hero-badge-icon {
    background: rgba(15, 23, 42, 0.06);
    color: var(--color-gold);
}

.hero-badge-2 {
    bottom: 15%;
    left: -5%;
    background: rgba(37, 99, 235, 0.9);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-badge-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-badge-info h4 {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.hero-badge-info p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Scroll indicator button at hero base */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: bounceIndicator 2s infinite;
}

[data-theme="light"] .hero-scroll-indicator {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.1);
}

.hero-scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.25);
}

[data-theme="light"] .hero-scroll-indicator:hover {
    background: rgba(15, 23, 42, 0.08);
}

@keyframes bounceIndicator {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-8px);
    }
    60% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@media (max-width: 992px) {
    .hero-scroll-indicator {
        display: none;
    }
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 60px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-stat-item {
        flex: 1;
        text-align: center;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-section {
        padding-top: 180px;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stats {
        gap: 10px;
    }
    
    .hero-stat-item h3 {
        font-size: 1.4rem;
    }
    
    .hero-stat-item p {
        font-size: 0.75rem;
    }
    
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
        width: 100%;
    }
    
    .hero-image-wrapper {
        display: none;
    }
    
    .hero-badge {
        position: static !important;
        width: 100%;
        max-width: 340px;
        margin: 0 auto !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        text-align: left;
        padding: 14px 20px;
    }
}

/* --- ABOUT PREVIEW / INTRO --- */
.about-preview-grid {
    align-items: center;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- COBERTURAS --- */
.coberturas-grid {
    margin-bottom: 50px;
}

.cobertura-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cobertura-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 24px;
    transition: var(--theme-transition);
}

.cobertura-card:hover .cobertura-icon-box {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-blue);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.cobertura-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cobertura-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
    margin-bottom: 20px;
}

.cobertura-card .card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cobertura-card .card-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.cobertura-card:hover .card-link svg {
    transform: translateX(4px);
}

/* --- CLUBE DE BENEFICIOS --- */
.club-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.club-grid {
    align-items: center;
}

.club-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.club-badge-card {
    text-align: center;
    padding: 20px;
    border-radius: 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    transition: var(--theme-transition);
}

.club-badge-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.club-badge-card span {
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin-bottom: 12px;
    color: var(--color-gold);
    transition: var(--theme-transition);
}

.club-badge-card span svg {
    width: 36px;
    height: 36px;
    stroke: currentColor;
    fill: none;
}

.club-badge-card:hover span {
    color: var(--color-blue);
    transform: scale(1.1);
}

.club-badge-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 640px) {
    .club-badge-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SIMULADOR DE COTAÇÃO --- */
.simulator-section {
    position: relative;
    overflow: hidden;
}

.simulator-container {
    max-width: 800px;
    margin: 0 auto;
}

.simulator-box {
    padding: 40px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
    transform: translateY(-50%);
}

.step-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface-elevated);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.step-dot.active {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: #0b0f19;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

.step-dot.completed {
    border-color: var(--color-blue);
    background: var(--color-blue);
    color: #ffffff;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    transition: var(--theme-transition);
}

.form-control:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-control[type="file"] {
    padding: 10px 14px;
    cursor: pointer;
}

.form-control[type="file"]::file-selector-button {
    background: var(--color-gold);
    color: #0b0f19;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 12px;
    transition: all 0.3s ease;
}

.form-control[type="file"]::file-selector-button:hover {
    background: var(--color-gold-hover);
}

/* Vehicle Selector Step 1 */
.vehicle-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto 30px auto;
    max-width: 560px;
}

.vehicle-option {
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-surface-elevated);
}

.vehicle-option:hover {
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.vehicle-option.selected {
    border-color: var(--color-blue);
    background: rgba(37, 99, 235, 0.05);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.vehicle-option-icon {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    transition: var(--theme-transition);
}

.vehicle-option-icon svg {
    width: 48px;
    height: 48px;
    stroke: currentColor;
    fill: none;
}

.vehicle-option.selected .vehicle-option-icon {
    color: var(--color-blue);
}

.vehicle-option:hover .vehicle-option-icon {
    color: var(--color-gold);
}

.vehicle-option h4 {
    font-weight: 600;
}

@media (max-width: 640px) {
    .vehicle-selector {
        grid-template-columns: 1fr;
    }
    .simulator-box {
        padding: 24px;
    }
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

/* --- DEPOIMENTOS --- */
.testimonials-section {
    background: var(--bg-surface);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    width: calc(33.333% - 20px);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .testimonial-card {
        min-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
        width: 100%;
    }
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar-info h4 {
    font-weight: 600;
    font-size: 1.1rem;
}

.testimonial-avatar-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    color: var(--color-gold);
    display: flex;
    gap: 2px;
}

.testimonial-content {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.6;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-gold);
    width: 30px;
    border-radius: 10px;
}

/* --- FAQ SECTION --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question h3 {
    color: var(--color-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--text-primary);
    transition: transform 0.3s ease;
}

/* horizontal bar */
.faq-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

/* vertical bar */
.faq-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

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

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

.faq-answer-inner {
    padding-top: 16px;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-gold);
    color: #0b0f19;
    border-color: var(--color-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--color-whatsapp-hover);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Pulse animation */
.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* --- CONTACT / WORK WITH US PAGE --- */
.contact-grid {
    align-items: flex-start;
}

.contact-info-box {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-text p {
    color: var(--text-secondary);
}

.map-wrapper {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- INTERNAL PAGES HERO --- */
.internal-hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.internal-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.internal-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--color-gold);
}

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

@media (max-width: 768px) {
    .internal-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }
    .internal-hero h1 {
        font-size: 2.25rem;
    }
}



/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 105px;
    right: 36px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-main);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-gold);
    color: #0b0f19;
    border-color: var(--color-gold);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px;
        right: 23px;
        width: 44px;
        height: 44px;
    }
}

/* ==========================================
   LANDING PAGE (LP) HIGH CONVERSION STYLES
   ========================================== */
.lp-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.lp-header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 0.9rem;
}

.lp-header-contact span {
    color: var(--text-secondary);
}

.lp-phone-link {
    color: var(--color-gold);
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.lp-phone-link:hover {
    color: var(--color-gold-hover);
}

.lp-hero-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

@media (max-width: 992px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.lp-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.lp-hero-content h1 span {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.lp-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-gold);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.lp-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-benefits-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.benefit-icon svg {
    width: 22px;
    height: 22px;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

/* Form Styles */
.lp-form-wrapper {
    position: relative;
    z-index: 10;
}

.lp-form-card {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-hover);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.lp-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.lp-form-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-form-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.input-with-icon {
    position: relative;
}

.input-with-icon svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.input-with-icon .form-control {
    padding-left: 48px;
}

.input-with-icon .form-control:focus + svg {
    color: var(--color-gold);
}

.btn-full-width {
    width: 100%;
}

/* Buttons inherit premium glass shine natively via .btn */

.lp-form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.lp-form-footer svg {
    width: 14px;
    height: 14px;
    stroke-width: 2.5px;
}

/* Proof Section */
.lp-proof-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
}

.lp-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

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

.proof-item h3 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.proof-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Trust Cards */
.lp-trust-cards-section {
    padding: 80px 0;
}

.trust-card {
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.trust-card-icon {
    display: inline-flex;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-blue);
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-card-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
}

.trust-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .lp-hero-content h1 {
        font-size: 2.25rem;
    }
    
    .lp-form-card {
        padding: 24px;
    }
}

/* ==========================================
   ASSOCIADO LOGIN MODAL
   ========================================== */
.associado-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.associado-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.associado-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
}

.associado-modal-content {
    position: relative;
    width: 90%;
    max-width: 420px;
    padding: 40px 30px;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.associado-modal.open .associado-modal-content {
    transform: scale(1);
}

.associado-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.associado-modal-close:hover {
    color: var(--text-primary);
    transform: rotate(90deg);
}

.associado-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.associado-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.associado-modal-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.associado-login-form .form-group {
    margin-bottom: 15px;
    text-align: left;
}

.associado-login-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.associado-login-form .form-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.associado-login-form .form-control:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

