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

        :root {
            --bg-primary: #0a1128;
            --bg-secondary: #0f1b33;
            --bg-surface: #152040;
            --bg-card: rgba(255, 255, 255, 0.05);
            --glass: rgba(255, 255, 255, 0.07);
            --glass-border: rgba(255, 255, 255, 0.12);
            --accent-gold: #f0a500;
            --accent-gold-light: #ffc845;
            --accent-sunset: #ff6b6b;
            --accent-blue: #4facfe;
            --accent-whatsapp: #25d366;
            --text-primary: #ffffff;
            --text-secondary: #b8c5d6;
            --text-muted: #6b7a8d;
            --success: #2ecc71;
            --font-display: 'Bebas Neue', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Lora', serif;
            --radius: 16px;
            --radius-sm: 10px;
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-primary);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 12px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 5vw, 3.8rem);
            letter-spacing: 0.04em;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 650px;
            margin-bottom: 40px;
        }

        .gold {
            color: var(--accent-gold);
        }

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

        .mx-auto {
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border: none;
            border-radius: 50px;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            color: #0a1128;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(240, 165, 0, 0.35);
            letter-spacing: 0.1em;
        }

        .btn-outline {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--glass-border);
        }

        .btn-outline:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
            color: white;
        }

        .btn-whatsapp:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
        }

        .btn-submit {
            width: 100%;
            justify-content: center;
            padding: 16px 32px;
            font-size: 1rem;
        }

        /* ---------- NAVEGACIÓN ---------- */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: var(--transition);
            background: transparent;
        }

        .nav.scrolled {
            background: rgba(10, 17, 40, 0.94);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            padding: 10px 0;
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .nav-logo {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            line-height: 1.1;
        }

        .nav-logo-main {
            font-family: var(--font-display);
            font-size: 1.8rem;
            letter-spacing: 0.08em;
            color: var(--text-primary);
        }

        .nav-logo-main .gold {
            font-size: 2rem;
        }

        .nav-logo-sub {
            font-family: var(--font-heading);
            font-size: 0.6rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--accent-gold);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }

        .nav-links a {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--text-secondary);
            text-decoration: none;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

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

        .lang-toggle {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 6px 14px;
            color: var(--text-secondary);
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            cursor: pointer;
            transition: var(--transition);
        }

        .lang-toggle:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .lang-toggle svg {
            width: 14px;
            height: 14px;
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .nav-phone:hover {
            color: var(--accent-gold-light);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background: var(--text-primary);
            transition: var(--transition);
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-menu {
            display: none;
        }

        /* ---------- HERO ---------- */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 120px 24px 80px;
        }

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

        .hero-slider {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease-in-out, transform 7s ease-out;
            transform: scale(1);
        }

        .hero-slide.active {
            opacity: 0.88;
            transform: scale(1.08);
        }

        .hero-gradient {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse at 15% 50%, rgba(240, 165, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 20%, rgba(79, 172, 254, 0.12) 0%, transparent 45%),
                radial-gradient(ellipse at 50% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10, 17, 40, 0.55) 0%, rgba(15, 27, 51, 0.4) 50%, rgba(10, 17, 40, 0.7) 100%);
            animation: gradientShift 20s ease-in-out infinite alternate;
            z-index: 1;
            pointer-events: none;
        }

        @keyframes gradientShift {
            0% {
                filter: hue-rotate(0deg) brightness(1);
            }
            50% {
                filter: hue-rotate(10deg) brightness(1.1);
            }
            100% {
                filter: hue-rotate(-5deg) brightness(1);
            }
        }

        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            z-index: 2;
            pointer-events: none;
        }

        .hero-orb-1 {
            width: 500px;
            height: 500px;
            background: rgba(240, 165, 0, 0.1);
            top: -10%;
            left: 10%;
            animation: orbFloat 25s ease-in-out infinite;
        }

        .hero-orb-2 {
            width: 400px;
            height: 400px;
            background: rgba(79, 172, 254, 0.08);
            bottom: -5%;
            right: 5%;
            animation: orbFloat 30s ease-in-out infinite reverse;
        }

        .hero-orb-3 {
            width: 350px;
            height: 350px;
            background: rgba(255, 107, 107, 0.07);
            top: 40%;
            right: 30%;
            animation: orbFloat 22s ease-in-out infinite;
            animation-delay: -8s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(60px, -40px) scale(1.1); }
            50% { transform: translate(-40px, 60px) scale(0.95); }
            75% { transform: translate(50px, 30px) scale(1.05); }
        }

        .hero-noise {
            position: absolute;
            inset: 0;
            z-index: 3;
            opacity: 0.03;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 200px;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 850px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 8px 20px;
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--accent-gold);
            margin-bottom: 28px;
            animation: fadeInDown 0.8s ease forwards;
            opacity: 0;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            background: var(--accent-gold);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 8vw, 6.2rem);
            line-height: 0.95;
            letter-spacing: 0.04em;
            margin-bottom: 24px;
            animation: fadeInUp 0.8s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-title .line {
            display: block;
        }

        .hero-title .accent {
            background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-secondary);
            max-width: 680px;
            margin: 0 auto 36px;
            animation: fadeInUp 0.8s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 32px;
            animation: fadeInUp 0.8s ease 0.6s forwards;
            opacity: 0;
        }

        .hero-phone-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            animation: fadeInUp 0.8s ease 0.8s forwards;
            opacity: 0;
            transition: var(--transition);
        }

        .hero-phone-badge:hover {
            color: var(--accent-gold);
        }

        .hero-phone-badge svg {
            color: var(--accent-gold);
        }

        .hero-scroll {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }

        /* ---------- GALERÍA DE DESTINOS POPULARES ---------- */
        .destinations-section {
            padding: 80px 0;
            position: relative;
        }

        .destinations-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .destination-card {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            height: 280px;
            border: 1px solid var(--glass-border);
            transition: var(--transition);
        }

        .destination-card:hover {
            transform: translateY(-6px);
            border-color: var(--accent-gold);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
        }

        .destination-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .destination-card:hover img {
            transform: scale(1.08);
        }

        .destination-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(10, 17, 40, 0.92) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 24px;
        }

        .destination-overlay h3,
        .destination-overlay h4 {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .destination-overlay p {
            font-size: 0.85rem;
            color: var(--accent-gold);
        }

        /* ---------- SERVICIOS ---------- */
        .services {
            padding: 100px 0;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 20px;
        }

        .service-card {
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 44px 36px;
            overflow: hidden;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-4px);
            border-color: var(--accent-gold);
            box-shadow: 0 16px 48px rgba(240, 165, 0, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light));
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 24px;
        }

        .service-icon.travel {
            background: linear-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(79, 172, 254, 0.05));
            border: 1px solid rgba(79, 172, 254, 0.2);
        }

        .service-icon.tax {
            background: linear-gradient(135deg, rgba(240, 165, 0, 0.15), rgba(240, 165, 0, 0.05));
            border: 1px solid rgba(240, 165, 0, 0.2);
        }

        .service-icon.notary {
            background: linear-gradient(135deg, rgba(46, 204, 113, 0.15), rgba(46, 204, 113, 0.05));
            border: 1px solid rgba(46, 204, 113, 0.2);
        }

        .service-card h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
            margin-bottom: 24px;
        }

        .service-card .features {
            list-style: none;
            margin-bottom: 28px;
        }

        .service-card .features li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 6px 0;
            font-family: var(--font-heading);
            font-size: 0.88rem;
            color: var(--text-secondary);
        }

        .service-card .features li::before {
            content: '✦';
            color: var(--accent-gold);
            font-size: 0.7rem;
        }

        .service-link {
            font-family: var(--font-heading);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--accent-gold);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: var(--transition);
        }

        .service-link:hover {
            gap: 14px;
        }

        /* ---------- SECCIONES DE FORMULARIO ---------- */
        .form-section {
            padding: 100px 0;
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        }

        .form-layout {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            align-items: start;
        }

        .form-info h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.2rem);
            letter-spacing: 0.04em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .form-info p {
            color: var(--text-secondary);
            margin-bottom: 24px;
        }

        .form-info .highlights {
            list-style: none;
            margin-top: 24px;
        }

        .form-info .highlights li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .form-info .highlights li .icon {
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .form-info .highlights li strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

        .form-info .highlights li span {
            font-size: 0.88rem;
            color: var(--text-muted);
        }

        .appointment-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.25);
            border-radius: 50px;
            padding: 8px 18px;
            font-family: var(--font-heading);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--accent-sunset);
            margin-bottom: 24px;
        }

        .call-schedule {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 28px;
            padding: 16px 20px;
            background: var(--glass);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
        }

        .call-schedule a {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-gold);
            text-decoration: none;
        }

        .call-schedule span {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* ---------- FORMULARIOS ---------- */
        .form-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 36px;
        }

        .form-card h3 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

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

        .g-recaptcha {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 78px;
            margin: 12px 0;
        }


        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            font-family: var(--font-heading);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-sm);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 0.95rem;
            transition: var(--transition);
            outline: none;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-muted);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent-gold);
            box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
            background: rgba(255, 255, 255, 0.06);
        }

        .form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b8c5d6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 40px;
        }

        .form-group select option {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-note {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-top: 8px;
            font-style: italic;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            opacity: 0;
            height: 0;
            width: 0;
            overflow: hidden;
        }

        .form-message {
            display: none;
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            font-family: var(--font-heading);
            font-size: 0.9rem;
            font-weight: 500;
            margin-top: 16px;
            animation: fadeInUp 0.4s ease;
        }

        .form-message.success {
            display: block;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: var(--success);
        }

        .form-message.error {
            display: block;
            background: rgba(255, 107, 107, 0.1);
            border: 1px solid rgba(255, 107, 107, 0.3);
            color: var(--accent-sunset);
        }

        /* ---------- REVIEWS / TRUST SECTION ---------- */
        .reviews-section {
            padding: 100px 0;
            position: relative;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            padding: 28px;
            position: relative;
            transition: var(--transition);
        }

        .review-card:hover {
            transform: translateY(-4px);
            border-color: rgba(240, 165, 0, 0.4);
        }

        .review-stars {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .review-text {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 20px;
        }

        .review-author {
            font-family: var(--font-heading);
            font-size: 0.88rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        .review-service {
            font-size: 0.78rem;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        /* ---------- FAQ ACCORDION SECTION ---------- */
        .faq-section {
            padding: 100px 0;
            position: relative;
        }

        .faq-accordion {
            max-width: 900px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-sm);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item:hover {
            border-color: rgba(240, 165, 0, 0.3);
        }

        .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            color: var(--text-primary);
            font-family: var(--font-heading);
            font-size: 1.05rem;
            font-weight: 600;
            text-align: left;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .faq-question .faq-icon {
            font-size: 1.2rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
            padding: 0 24px;
            color: var(--text-secondary);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 24px 20px 24px;
            transition: max-height 0.4s ease-in-out, padding 0.3s ease;
        }

        /* ---------- POR QUÉ ELEGIRNOS ---------- */
        .why-section {
            padding: 100px 0;
            position: relative;
            background:
                radial-gradient(ellipse at 30% 50%, rgba(240, 165, 0, 0.06) 0%, transparent 50%),
                var(--bg-secondary);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 20px;
        }

        .why-card {
            text-align: center;
            padding: 36px 20px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .why-card:hover {
            transform: translateY(-4px);
            border-color: rgba(240, 165, 0, 0.3);
        }

        .why-card .emoji {
            font-size: 2.4rem;
            margin-bottom: 16px;
        }

        .why-card h4 {
            font-family: var(--font-heading);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-card p {
            font-size: 0.88rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* ---------- CONTACTO ---------- */
        .contact-section {
            padding: 100px 0;
            position: relative;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 20px;
        }

        .contact-card {
            padding: 32px;
            background: var(--bg-card);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
        }

        .contact-card:hover {
            border-color: rgba(240, 165, 0, 0.3);
        }

        .contact-card .emoji {
            font-size: 2rem;
            margin-bottom: 14px;
        }

        .contact-card h4 {
            font-family: var(--font-heading);
            font-size: 0.95rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .contact-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .contact-card a {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }

        .contact-card a:hover {
            color: var(--accent-gold-light);
        }

        /* ---------- MAPA ---------- */
        .map-section {
            padding: 0 0 80px;
        }

        .map-wrapper {
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--glass-border);
            height: 300px;
        }

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

        /* ---------- FOOTER ---------- */
        .footer {
            padding: 40px 0;
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }

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

        .footer a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer a:hover {
            text-decoration: underline;
            color: var(--accent-gold-light, #ffd54f);
        }

        .footer .footer-note {
            margin-top: 8px;
            font-size: 0.78rem;
            color: var(--text-muted);
            opacity: 0.7;
        }

        .footer .footer-credit {
            margin-top: 10px;
            font-size: 0.78rem;
            color: var(--text-muted);
        }

        /* ---------- ACTION HUB FLOTANTE ---------- */
        .floating-action-hub {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
            align-items: flex-end;
        }

        .floating-btn {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
            transition: var(--transition);
            position: relative;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        .floating-btn.whatsapp {
            background: #25D366;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            animation: pulseWhatsapp 3s ease-in-out infinite;
        }

        .floating-btn.messenger {
            background: #0084FF;
            box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
        }

        .floating-btn.phone {
            background: var(--accent-gold);
            box-shadow: 0 4px 20px rgba(240, 165, 0, 0.4);
        }

        .floating-btn svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        @keyframes pulseWhatsapp {
            0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.15); }
        }

        /* ---------- ANIMACIONES ---------- */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

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

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 1024px) {
            .form-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .why-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
            .contact-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-phone.desktop-only { display: none; }
            .hamburger { display: flex; }

            .mobile-menu {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                z-index: 998;
                background: rgba(10, 17, 40, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 24px 40px;
                flex-direction: column;
                gap: 0;
            }

            .mobile-menu.active { display: flex; }

            .mobile-menu a {
                font-family: var(--font-heading);
                font-size: 1.3rem;
                font-weight: 600;
                letter-spacing: 0.05em;
                text-transform: uppercase;
                color: var(--text-primary);
                text-decoration: none;
                padding: 18px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.06);
                transition: var(--transition);
            }

            .mobile-menu a:hover {
                color: var(--accent-gold);
                padding-left: 12px;
            }

            .mobile-menu .mobile-phone {
                margin-top: auto;
                font-family: var(--font-heading);
                font-size: 1.1rem;
                font-weight: 700;
                color: var(--accent-gold);
                text-decoration: none;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 20px 0;
            }

            .hero {
                padding: 100px 20px 60px;
                min-height: 90vh;
            }

            .hero-title { font-size: clamp(2.4rem, 10vw, 4rem); }
            .hero-desc { font-size: 1rem; }

            .hero-ctas {
                flex-direction: column;
                align-items: center;
            }

            .hero-ctas .btn {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }

            .services-grid, .why-grid, .reviews-grid, .contact-grid {
                grid-template-columns: 1fr;
            }

            .service-card, .form-card { padding: 28px 20px; }

            .section-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }
        }

        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .hero { padding: 90px 16px 50px; }
            .hero-badge { font-size: 0.68rem; padding: 6px 14px; }
            .hero-title { font-size: 2.2rem; }
            .form-section, .services, .why-section, .contact-section, .reviews-section, .faq-section {
                padding: 60px 0;
            }
            .btn { padding: 12px 24px; font-size: 0.85rem; }
            .floating-action-hub { bottom: 16px; right: 16px; gap: 10px; }
            .floating-btn { width: 48px; height: 48px; }
            .floating-btn svg { width: 24px; height: 24px; }
        }
