/* ===================================================
   GesArg - Unified Styles (Orange Theme)
   =================================================== */

/* ===== VARIABLES ===== */
:root {
    /* Background Colors */
    --primary: #0a0a0a;
    --secondary: #1a1a1a;
    --surface: #141414;
    --surface-light: #1f1f1f;
    --dark: #121212;
    --light: #ffffff;
    --body-bg: #0A0A0A;
    --card-bg-dark: #1A1A1A;
    --card-bg-light: #222222;

    /* Accent Colors (Orange Theme) */
    --accent: #ff6b35;
    --accent-light: #ff8c5a;
    --accent-dark: #e55a2b;
    --accent-warm: #f7931e;
    --accent-glow: rgba(255, 107, 53, 0.3);

    /* Text Colors */
    --text: #ffffff;
    --text-muted: #a0a0a0;
    --text-dark: #666666;
    --gray: #888888;

    /* Borders & Shadows */
    --border: rgba(255, 255, 255, 0.08);
    --card-border: 1px solid rgba(255, 255, 255, 0.05);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.4);

    /* Gradients */
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    --gradient-2: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-primary: 'Syne', sans-serif;
    --font-secondary: 'DM Sans', 'Inter', sans-serif;

    /* Layout */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    cursor: default;
}

body {
    font-family: var(--font-body);
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--light);
}

p {
    color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CURSOR ===== */
/* Index cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    mix-blend-mode: difference;
}

.cursor.active {
    transform: scale(2);
    opacity: 0.5;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Subpage cursor */
#cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--accent);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-hover {
    width: 60px !important;
    height: 60px !important;
    background-color: var(--accent-warm) !important;
}

/* ===== UTILITIES ===== */
.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* ===== BUTTONS ===== */
/* Subpage buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 100px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s, opacity 0.3s;
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--primary);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Standalone buttons (index) */
a.btn-primary,
button.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

a.btn-secondary,
button.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 80px;
    margin-bottom: 30px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--surface-light);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    background: var(--gradient-1);
    animation: loading 1.5s ease-in-out forwards;
}

/* Subpage preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--body-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader svg circle:nth-child(2) {
    stroke: var(--accent);
    filter: drop-shadow(0 0 5px var(--accent));
}

/* ===== NAVIGATION - INDEX ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.nav-logo img {
    height: 40px;
}

.nav-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent);
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--accent);
}

/* ===== NAVIGATION - SUBPAGES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light);
    text-decoration: none;
    z-index: 1001;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-item {
    color: var(--light);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--accent);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active {
    color: var(--accent);
}

.nav-item.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--light);
    cursor: pointer;
    z-index: 1001;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay .nav-menu {
    flex-direction: column;
    gap: 30px;
}

.menu-overlay .nav-item {
    color: white;
    font-size: 2.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.menu-overlay.active .nav-item {
    transform: translateY(0);
    opacity: 1;
}

.menu-overlay.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
.menu-overlay.active .nav-item:nth-child(2) { transition-delay: 0.2s; }
.menu-overlay.active .nav-item:nth-child(3) { transition-delay: 0.3s; }
.menu-overlay.active .nav-item:nth-child(4) { transition-delay: 0.4s; }
.menu-overlay.active .nav-item:nth-child(5) { transition-delay: 0.5s; }

/* ===== SECTION STYLES ===== */
.section {
    padding: 100px 0;
    position: relative;
    background-color: var(--body-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title-underline {
    position: relative;
    display: inline-block;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-1);
    border-radius: 10px;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CARD STYLES ===== */
.card {
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    overflow: hidden;
    border: var(--card-border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

/* ===== HERO - INDEX ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 50px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.5s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.hero-badge span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 30px;
}

.hero-title .highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    opacity: 0;
    transform: translateX(40px);
    animation: fadeLeft 1s ease 0.8s forwards;
}

.hero-cards {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.hero-card-1 {
    top: 0;
    left: 0;
    width: 280px;
    z-index: 3;
    animation: cardFloat1 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 60px;
    right: 0;
    width: 260px;
    z-index: 2;
    animation: cardFloat2 7s ease-in-out infinite;
}

.hero-card-3 {
    bottom: 0;
    left: 40px;
    width: 300px;
    z-index: 1;
    animation: cardFloat3 5s ease-in-out infinite;
}

.hero-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== HERO - SUBPAGES ===== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-greeting {
    display: inline-block;
    background: var(--gradient-1);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    font-family: var(--font-primary);
    box-shadow: 0 5px 20px var(--accent-glow);
}

.hero-image {
    position: relative;
    z-index: 5;
}

.hero-image img {
    border-radius: var(--border-radius);
    width: 100%;
    height: auto;
    box-shadow: var(--card-shadow);
    animation: float 6s ease-in-out infinite;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    z-index: 1;
}

.hero-blob-1 {
    background: var(--accent);
    top: -200px;
    right: -100px;
}

.hero-blob-2 {
    background: var(--accent-warm);
    bottom: -200px;
    left: -100px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.hero-stat {
    flex: 1;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-primary);
    margin-bottom: 5px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.hero-emprendedores {
    position: relative;
    background: linear-gradient(135deg, #121212, #232323);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-emprendedores::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--light);
    z-index: 10;
    text-decoration: none;
    transition: var(--transition);
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-indicator span {
    font-weight: 500;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    background-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.scroll-arrow {
    color: white;
    animation: bounce 2s infinite;
}

/* ===== PRICING / SERVICES - INDEX ===== */
.services {
    background: var(--secondary);
}

.services-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    margin-bottom: 60px;
    text-align: center;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
    background: var(--surface);
    padding: 8px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.pricing-toggle button {
    padding: 14px 32px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-toggle button.active {
    background: var(--accent);
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(255,107,53,0.1) 0%, var(--surface) 50%);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: var(--surface-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 25px;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 25px;
}

.pricing-price .amount {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text);
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-price .note {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent);
    margin-top: 3px;
}

.pricing-cta {
    width: 100%;
    padding: 16px 30px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.pricing-card.featured .pricing-cta {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.pricing-card.featured .pricing-cta:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--accent);
    margin-right: 8px;
}

/* Addon section */
.addon-section {
    margin-top: 60px;
}

.addon-card {
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, var(--surface) 50%);
    border: 1px solid var(--accent);
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
}

.addon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.addon-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.addon-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
}

.addon-info { flex: 1; }

.addon-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.addon-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.addon-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.addon-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.addon-features li i {
    color: var(--accent);
    font-size: 0.8rem;
}

.addon-pricing {
    text-align: center;
    min-width: 200px;
}

.addon-price { margin-bottom: 10px; }

.addon-amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
}

.addon-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.addon-note {
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.addon-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.addon-cta:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
}

/* ===== PLANS - SUBPAGES ===== */
.horizontal-plan {
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 40px;
    margin-bottom: 60px;
    transition: var(--transition);
    border: var(--card-border);
    position: relative;
    overflow: hidden;
}

.horizontal-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    z-index: 0;
}

.horizontal-plan:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.plan-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.plan-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.plan-options {
    display: flex;
    gap: 30px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.plan-options.three-columns {
    flex-wrap: wrap;
}

.plan-option {
    flex: 1;
    background: var(--card-bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    min-width: 250px;
    border: var(--card-border);
    color: white;
}

.plan-option:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow);
}

.plan-option.featured {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.2));
    border: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    transform: scale(1.05);
}

.plan-option.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-option-header {
    margin-bottom: 20px;
}

.plan-option-header i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
    display: block;
}

.plan-option-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-primary);
    line-height: 1;
}

.plan-option.featured .plan-price {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-period {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.plan-description {
    margin-bottom: 25px;
    min-height: 60px;
    color: rgba(255, 255, 255, 0.8);
}

.plan-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.plan-detail-card {
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 40px;
    border: var(--card-border);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.plan-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
}

.plan-detail-card.featured::before {
    background: linear-gradient(to right, var(--accent), var(--accent-warm));
}

.plan-detail-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.plan-features-list {
    margin: 30px 0;
    list-style: none;
}

.plan-features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.plan-features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.plan-features-list li.not-included {
    opacity: 0.6;
}

.plan-features-list li.not-included::before {
    content: '\f00d';
    color: var(--accent-warm);
}

/* ===== MANAGEMENT - INDEX ===== */
.management {
    background: var(--primary);
}

.management-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.management-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.management-content h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.management-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.management-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.management-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.management-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--surface);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.management-feature h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.management-feature p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

.management-visual { position: relative; }

.management-image {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 30px;
}

.management-mockup {
    background: var(--surface-light);
    border-radius: 16px;
    padding: 20px;
    position: relative;
}

.mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--surface);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #ffbd2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
}

.mockup-sidebar {
    background: var(--surface);
    border-radius: 8px;
    padding: 15px;
}

.mockup-menu-item {
    height: 12px;
    background: var(--border);
    border-radius: 4px;
    margin-bottom: 10px;
}

.mockup-menu-item.active {
    background: var(--accent);
}

.mockup-main {
    background: var(--surface);
    border-radius: 8px;
    padding: 15px;
}

.mockup-chart {
    height: 100px;
    background: linear-gradient(180deg, var(--accent-glow) 0%, transparent 100%);
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
}

.mockup-chart::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-stat {
    background: var(--surface-light);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
}

.mockup-stat-value {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.mockup-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== PANELS ===== */
/* Index panels */
.panels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.panel-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    text-decoration: none;
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.panel-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.panel-card:hover::before {
    opacity: 1;
}

.panel-card-icon {
    width: 70px;
    height: 70px;
    background: var(--surface-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.panel-card:hover .panel-card-icon {
    background: var(--accent);
    color: var(--primary);
}

.panel-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.panel-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.panel-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.panel-card-link i {
    transition: transform 0.3s ease;
}

.panel-card:hover .panel-card-link i {
    transform: translateX(5px);
}

.panels-cta {
    text-align: center;
    margin-top: 50px;
}

/* Subpage panels section */
.panels-section {
    background: linear-gradient(135deg, #151515, #202020);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin: 80px 0;
    border: var(--card-border);
    position: relative;
    overflow: hidden;
}

.panels-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
    z-index: 0;
}

.panels-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.panels-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.panels-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.panels-preview {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Subpage panel icon */
.panel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px var(--accent-glow);
}

.panel-card:nth-child(2) .panel-icon {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-dark));
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.2);
}

.panel-card:nth-child(3) .panel-icon {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 10px 20px var(--accent-glow);
}

.panel-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.panel-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* ===== RESTAURANTS - INDEX ===== */
.restaurants {
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.restaurants::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.2;
}

.restaurants-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.restaurants-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.restaurants-info { order: 2; }

.restaurants-info h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.restaurants-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.restaurants-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.restaurant-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.restaurant-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
}

.restaurant-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.restaurant-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.restaurants-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.restaurants-visual { order: 1; }

.restaurants-mockup {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px;
    position: relative;
}

.restaurants-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.restaurants-mockup-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.restaurants-mockup-logo i {
    font-size: 1.5rem;
    color: var(--accent);
}

.restaurants-mockup-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.restaurants-mockup-dots {
    display: flex;
    gap: 6px;
}

.restaurants-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.restaurants-mockup-dots span:nth-child(1) { background: #ff5f57; }
.restaurants-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.restaurants-mockup-dots span:nth-child(3) { background: #28c840; }

.restaurants-mockup-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.mockup-reservation {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 15px;
}

.mockup-reservation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.mockup-reservation-header span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-reservation-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.mockup-reservation-badge.confirmed {
    background: rgba(40, 200, 64, 0.2);
    color: #28c840;
}

.mockup-reservation-badge.pending {
    background: rgba(255, 189, 46, 0.2);
    color: #ffbd2e;
}

.mockup-reservation-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mockup-reservation-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-reservation-row i {
    color: var(--accent);
    width: 14px;
}

.mockup-calendar {
    background: var(--surface-light);
    border-radius: 12px;
    padding: 15px;
    grid-column: span 2;
}

.mockup-calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.mockup-calendar-header span {
    font-size: 0.85rem;
    font-weight: 600;
}

.mockup-calendar-nav {
    display: flex;
    gap: 8px;
}

.mockup-calendar-nav button {
    width: 24px;
    height: 24px;
    border: none;
    background: var(--surface);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.7rem;
}

.mockup-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.mockup-calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    border-radius: 6px;
    color: var(--text-muted);
}

.mockup-calendar-day.active {
    background: var(--accent);
    color: var(--primary);
    font-weight: 600;
}

.mockup-calendar-day.has-reservations {
    background: var(--surface);
    color: var(--text);
}

.mockup-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-column: span 2;
}

.mockup-stat-card {
    background: var(--surface-light);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.mockup-stat-card i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.mockup-stat-card .value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-stat-card .label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== AGENCIES - INDEX ===== */
.agencies {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.agencies::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.2;
}

.agencies-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.agencies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.agencies-info h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.agencies-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.agencies-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.agency-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.agency-feature-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--accent);
}

.agency-feature h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.agency-feature p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.agencies-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.agencies-mockup {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 25px;
    position: relative;
}

.agencies-mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.agencies-mockup-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.agencies-mockup-logo i {
    font-size: 1.5rem;
    color: var(--accent);
}

.agencies-mockup-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
}

.agencies-mockup-dots {
    display: flex;
    gap: 6px;
}

.agencies-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.agencies-mockup-dots span:nth-child(1) { background: #ff5f57; }
.agencies-mockup-dots span:nth-child(2) { background: #ffbd2e; }
.agencies-mockup-dots span:nth-child(3) { background: #28c840; }

.agencies-mockup-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mockup-filters {
    display: flex;
    gap: 10px;
}

.mockup-filter-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--surface-light);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.mockup-filter-item.active {
    background: var(--accent);
    color: var(--primary);
}

.mockup-filter-item i {
    font-size: 0.7rem;
}

.mockup-vehicles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mockup-vehicle-card {
    background: var(--surface-light);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-vehicle-image {
    height: 80px;
    background: linear-gradient(135deg, var(--accent-glow) 0%, var(--surface) 100%);
    position: relative;
}

.mockup-vehicle-image.used {
    background: linear-gradient(135deg, rgba(100, 100, 100, 0.3) 0%, var(--surface) 100%);
}

.mockup-vehicle-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mockup-vehicle-badge.new {
    background: var(--accent);
    color: var(--primary);
}

.mockup-vehicle-badge.used {
    background: var(--surface);
    color: var(--text-muted);
}

.mockup-vehicle-info { padding: 10px; }

.mockup-vehicle-brand {
    font-size: 0.65rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mockup-vehicle-name {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    margin: 3px 0;
}

.mockup-vehicle-specs {
    display: flex;
    gap: 10px;
    margin: 6px 0;
}

.mockup-vehicle-specs span {
    font-size: 0.65rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mockup-vehicle-specs i {
    font-size: 0.6rem;
    color: var(--accent);
}

.mockup-vehicle-price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}

.mockup-agency-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 5px;
}

.mockup-agency-stat {
    background: var(--surface-light);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.mockup-agency-stat i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 8px;
}

.mockup-agency-stat .value {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.mockup-agency-stat .label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ===== PORTFOLIO - INDEX ===== */
.portfolio {
    background: var(--primary);
}

.portfolio-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.portfolio-card:hover {
    border-color: var(--accent);
    transform: translateY(-10px);
}

.portfolio-card.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.portfolio-card.featured .portfolio-image {
    aspect-ratio: 16/12;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    background: var(--accent);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: var(--accent-light);
}

.portfolio-content { padding: 25px; }

.portfolio-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-card.featured .portfolio-title {
    font-size: 1.8rem;
}

.portfolio-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.portfolio-stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.portfolio-stat { text-align: center; }

.portfolio-stat-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.portfolio-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.portfolio-cta {
    text-align: center;
    margin-top: 60px;
}

/* ===== PORTFOLIO - SUBPAGES ===== */
.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-carousel {
    position: relative;
    padding: 20px 0 60px;
}

.carousel-container {
    overflow: hidden;
    position: relative;
    margin: 0 40px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    height: 300px;
    flex: 0 0 calc(33.33% - 20px);
    margin: 0 10px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.2s;
    font-family: var(--font-primary);
}

.portfolio-item:hover .portfolio-category {
    transform: translateY(0);
}

.portfolio-links {
    display: flex;
    gap: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    transition-delay: 0.3s;
}

.portfolio-item:hover .portfolio-links {
    transform: translateY(0);
    opacity: 1;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* ===== FEATURES ===== */
/* Index features */
.features {
    background: var(--secondary);
}

.features-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, var(--accent-glow) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--surface-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Subpage features */
.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(255, 107, 53, 0));
    z-index: 0;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

/* ===== TESTIMONIALS ===== */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 60px 0;
}

.testimonial-item {
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    padding: 30px;
    position: relative;
    border: var(--card-border);
}

.testimonial-item::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.2);
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-family: var(--font-primary);
    font-weight: 700;
    color: white;
}

.testimonial-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th {
    background: rgba(255, 107, 53, 0.1);
    color: white;
    padding: 20px;
    text-align: left;
    font-family: var(--font-primary);
    font-weight: 700;
}

.comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table i.included {
    color: var(--accent);
}

.comparison-table i.not-included {
    color: var(--accent-warm);
}

.comparison-highlight {
    background: rgba(255, 107, 53, 0.05);
}

.comparison-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 10px;
}

.comparison-badge.recommended {
    background: rgba(255, 107, 53, 0.2);
    color: var(--accent-light);
}

/* ===== FAQ ===== */
.faq-section {
    margin-top: 80px;
}

.faq-item {
    margin-bottom: 20px;
    background: var(--card-bg-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: var(--card-border);
}

.faq-question {
    padding: 20px;
    font-family: var(--font-primary);
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== CONTACT - INDEX ===== */
.contact {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 60%);
    opacity: 0.3;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--surface);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.contact-item p,
.contact-item a {
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
}

.contact-form-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--surface-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit {
    width: 100%;
    padding: 18px 36px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px var(--accent-glow);
}

/* ===== CONTACT - SUBPAGES ===== */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--card-bg-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    border: var(--card-border);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.contact-method-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: var(--gradient-1);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px var(--accent-glow);
    flex-shrink: 0;
}

.contact-method:nth-child(2) .contact-method-icon {
    background: linear-gradient(135deg, var(--accent-warm), var(--accent-dark));
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.2);
}

.contact-method:nth-child(3) .contact-method-icon {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    box-shadow: 0 10px 20px var(--accent-glow);
}

.contact-method-content h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    color: white;
}

.contact-method-content p, .contact-method-content a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.contact-method-content a:hover {
    color: var(--accent);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg-dark);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    border: var(--card-border);
}

.social-link:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-5px);
}

/* Subpage form controls */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
    font-family: var(--font-primary);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--card-bg-light);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
    resize: none;
    color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== FOOTER - INDEX ===== */
footer {
    background: var(--primary);
    padding: 80px 50px 30px;
    border-top: 1px solid var(--border);
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: var(--surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--primary);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== FOOTER - SUBPAGES ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 20px 20px;
    opacity: 0.5;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 10px;
}

.footer-link {
    margin-bottom: 15px;
}

.footer-link a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent);
}

/* ===== WHATSAPP & BACK TO TOP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--accent-glow);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--accent-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 990;
}

#backToTop.active {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-5px);
}

/* ===== PARTICLES ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(0.98); }
}

@keyframes loading {
    0% { width: 0; }
    100% { width: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in-up { animation: fadeInUp 0.8s forwards; }
.zoom-in { animation: zoomIn 0.8s forwards; }
.slide-in-left { animation: slideInLeft 0.8s forwards; }
.slide-in-right { animation: slideInRight 0.8s forwards; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.glow-on-hover {
    position: relative;
    overflow: hidden;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.glow-on-hover:hover::after {
    opacity: 1;
}

/* ===== RESPONSIVE - INDEX ===== */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .addon-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .addon-icon {
        margin: 0 auto;
    }

    .addon-features {
        justify-content: center;
    }

    .addon-badge {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-bottom: 20px;
    }

    .management-intro {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .panels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurants-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .restaurants-info { order: 1; }
    .restaurants-visual { order: 2; }

    .restaurants-features {
        grid-template-columns: 1fr;
    }

    .agencies-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .agencies-features {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-card.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    nav {
        padding: 15px 30px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .section {
        padding: 80px 30px;
    }

    .hero {
        padding: 100px 30px 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Subpage specific */
    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content:not(.hero-content) {
        order: 2;
    }

    .hero-image {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
    }

    .plan-options {
        flex-direction: column;
    }

    .plan-option {
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-option.featured {
        transform: scale(1);
    }

    .plan-option.featured:hover {
        transform: translateY(-10px);
    }

    .plan-detail-container {
        grid-template-columns: 1fr;
    }

    .plan-detail-card.featured {
        transform: scale(1);
    }

    .portfolio-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 15px 20px;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .section {
        padding: 60px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .addon-card {
        padding: 30px 25px;
    }

    .addon-title {
        font-size: 1.4rem;
    }

    .addon-features {
        grid-template-columns: 1fr;
    }

    .addon-amount {
        font-size: 2rem;
    }

    .panels-grid {
        grid-template-columns: 1fr;
    }

    .restaurants-info h3 {
        font-size: 1.8rem;
    }

    .restaurants-buttons {
        flex-direction: column;
    }

    .restaurants-buttons .btn-primary,
    .restaurants-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .agencies-info h3 {
        font-size: 1.8rem;
    }

    .agencies-buttons {
        flex-direction: column;
    }

    .agencies-buttons .btn-primary,
    .agencies-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .mockup-vehicles {
        grid-template-columns: 1fr;
    }

    .mockup-agency-stats {
        grid-template-columns: 1fr;
    }

    .mockup-stats-row {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-card.featured {
        grid-column: span 1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cursor,
    .cursor-dot {
        display: none;
    }

    #cursor {
        display: none;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .section-title {
        font-size: 2.8rem;
    }

    /* Subpage specific */
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .panels-preview {
        flex-direction: column;
        align-items: center;
    }

    .panel-card {
        width: 100%;
        max-width: 400px;
    }

    .portfolio-item {
        flex: 0 0 calc(100% - 20px);
    }

    .hero-split {
        display: flex;
        flex-direction: column;
    }

    .hero-blob {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .portfolio-carousel {
        padding: 10px 0 40px;
    }

    .carousel-container {
        margin: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .form-control {
        padding: 12px 15px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .menu-overlay .nav-item {
        font-size: 1.8rem;
        padding: 10px 0;
    }

    .menu-overlay.active {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100vh;
    }

    #particles-canvas {
        opacity: 0.1;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-greeting {
        font-size: 0.9rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .plan-option {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 30px 25px;
    }

    .contact-form-container {
        padding: 30px 25px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    #backToTop {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 400px) {
    .plan-price {
        font-size: 2.2rem;
    }

    .plan-option-header h4 {
        font-size: 1.3rem;
    }

    .panels-title,
    .plan-title {
        font-size: 1.6rem;
    }

    .section {
        padding: 60px 0;
    }

    .horizontal-plan {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .btn {
        padding: 0.8rem 1.5rem;
    }

    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 992px) {
    .plan-options {
        flex-wrap: wrap;
        justify-content: center;
    }

    .plan-option {
        flex: 0 0 45%;
        margin-bottom: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
