        :root {
            /* Paleta de colores luxury */
            --night: #020202;
            --gold: #c9b977;
            --dark-gold: #b3a469;
            --light-gold: #ecdda2;
            --charcoal: #373739;
            --dark-charcoal: #19191a;
            --white: #ffffff;
            --light-gray: #f8f8f8;
            --medium-gray: #e0e0e0;
            /* Shadows luxury */
            --gold-glow: 0 0 30px rgba(201, 185, 119, 0.15);
            --deep-shadow: 0 20px 60px rgba(2, 2, 2, 0.4);
            --card-shadow: 0 15px 50px rgba(2, 2, 2, 0.25);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background: var(--night);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            letter-spacing: -0.02em;
        }
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(2, 2, 2, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201, 185, 119, 0.2);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        .navbar.scrolled {
            background: rgba(2, 2, 2, 0.98);
            box-shadow: var(--deep-shadow);
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }
        .logo-container img {
            height: 60px;
            width: auto;
            object-fit: contain;
        }
        .nav-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            color: var(--gold);
            font-weight: 500;
            letter-spacing: 0.5px;
            display: none;
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
            align-items: center;
        }
        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--light-gold));
            transition: width 0.3s ease;
        }
        .nav-menu a:hover {
            color: var(--gold);
        }
        .nav-menu a:hover::after {
            width: 100%;
        }
        .nav-cta {
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--night) !important;
            padding: 12px 25px !important;
            border-radius: 30px;
            font-weight: 600 !important;
            box-shadow: var(--gold-glow);
            transition: all 0.3s ease;
        }
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(201, 185, 119, 0.3);
        }
        .nav-cta::after {
            display: none;
        }
        /* Mobile Menu */
        .nav-toggle {
            display: none;
            background: none;
            border: 2px solid var(--gold);
            color: var(--gold);
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.2rem;
        }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 0 80px;
            background: linear-gradient(135deg, var(--night) 0%, var(--dark-charcoal) 100%);
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(201, 185, 119, 0.05) 0%, transparent 70%);
            animation: subtle-pulse 8s ease-in-out infinite;
        }
        @keyframes subtle-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        .hero-image {
            width: 100%;
            height: 500px;
            border-radius: 16px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--deep-shadow);
            border: 2px solid rgba(201, 185, 119, 0.2);
        }
        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .hero-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        .hero-title {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 300;
            margin-bottom: 25px;
            color: var(--white);
            line-height: 1.2;
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        .hero-subtitle {
            font-size: clamp(1.1rem, 4vw, 1.5rem);
            color: var(--gold);
            margin-bottom: 30px;
            font-weight: 500;
        }
        .hero-description {
            font-size: clamp(1rem, 3.5vw, 1.2rem);
            color: var(--medium-gray);
            margin-bottom: 50px;
            line-height: 1.7;
            font-weight: 300;
            padding: 0 10px;
        }
        /* CTA Buttons */
        .cta-primary {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--night);
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--gold-glow);
            position: relative;
            overflow: hidden;
        }
        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }
        .cta-primary:hover::before {
            left: 100%;
        }
        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(201, 185, 119, 0.3);
        }
        .cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: transparent;
            color: var(--gold);
            padding: 18px 35px;
            border: 2px solid var(--gold);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-left: 20px;
        }
        .cta-secondary:hover {
            background: var(--gold);
            color: var(--night);
            transform: translateY(-2px);
        }
        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 60px;
        }
        .badge {
            background: rgba(201, 185, 119, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 185, 119, 0.3);
            padding: 15px 25px;
            border-radius: 30px;
            color: var(--gold);
            font-size: 0.95rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }
        .badge:hover {
            background: rgba(201, 185, 119, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(201, 185, 119, 0.2);
        }
        /* Authority Hub Section */
        .authority-section {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--night) 100%);
        }
        .authority-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .authority-title {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 60px;
            color: var(--white);
        }
        .authority-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }
        .authority-card {
            background: rgba(201, 185, 119, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(201, 185, 119, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        .authority-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 25px;
        }
        .authority-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--white);
        }
        .authority-card p {
            color: var(--medium-gray);
            margin-bottom: 30px;
            line-height: 1.7;
        }
        .authority-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--night);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            margin-top: 15px;
            box-shadow: 0 5px 15px rgba(201, 185, 119, 0.2);
        }
        .authority-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 185, 119, 0.3);
        }
        .authority-cta-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .authority-cta-secondary:hover {
            transform: translateX(5px);
            color: var(--light-gold);
        }
        /* Credentials Section */
        .credentials-section {
            padding: 120px 0;
            background: var(--night);
        }
        .credentials-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }
        .credentials-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: var(--white);
        }
        .credentials-content {
            background: rgba(201, 185, 119, 0.05);
            border: 1px solid rgba(201, 185, 119, 0.2);
            border-radius: 16px;
            padding: 50px;
            margin-bottom: 40px;
        }
        .credentials-text {
            color: var(--medium-gray);
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .credentials-affiliations {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        .affiliation-item {
            background: rgba(201, 185, 119, 0.1);
            padding: 15px 25px;
            border-radius: 12px;
            color: var(--gold);
            font-weight: 500;
        }
        .credentials-link {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--night);
            padding: 15px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(201, 185, 119, 0.2);
        }
        .credentials-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(201, 185, 119, 0.3);
        }
        /* FAQ Section */
        .faq {
            padding: 120px 0;
            background: linear-gradient(135deg, var(--night) 0%, var(--dark-charcoal) 100%);
            position: relative;
        }
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 60px;
            color: var(--white);
        }
        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .faq-item {
            background: rgba(201, 185, 119, 0.03);
            border: 1px solid rgba(201, 185, 119, 0.15);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }
        .faq-question {
            padding: 30px 35px;
            background: rgba(201, 185, 119, 0.05);
            color: var(--white);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.15rem;
            border-bottom: 1px solid rgba(201, 185, 119, 0.1);
        }
        .faq-question:hover {
            background: rgba(201, 185, 119, 0.12);
            color: var(--gold);
        }
        .faq-question i {
            color: var(--gold);
            font-size: 1.2rem;
            transition: all 0.4s ease;
            min-width: 20px;
            margin-left: 15px;
        }
        .faq-question.active i {
            transform: rotate(45deg);
            color: var(--light-gold);
        }
        .faq-answer {
            padding: 0;
            color: var(--medium-gray);
            line-height: 1.8;
            font-size: 1.05rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        .faq-answer.active {
            padding: 30px 35px;
            max-height: 500px;
        }
        .faq-answer p {
            margin-bottom: 20px;
        }
        .faq-answer a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .faq-answer a:hover {
            color: var(--light-gold);
        }
        /* Map Section - CORREGIDO PARA IPHONE */
        .map-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--dark-charcoal), var(--night));
        }
        .map-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .section-title-map {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            margin-bottom: 60px;
            color: var(--white);
        }
        .map-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        .google-map-wrapper {
            width: 100%;
            height: 400px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            border: 2px solid rgba(201, 185, 119, 0.2);
            position: relative;
            isolation: isolate;
        }
        .google-map-inner {
            width: 100%;
            height: 100%;
            overflow: hidden;
            position: relative;
        }
        .google-map-inner iframe {
            width: 100% !important;
            height: 100% !important;
            border: none;
            display: block;
            position: relative;
            z-index: 1;
        }
        .contact-info {
            background: rgba(201, 185, 119, 0.05);
            border: 1px solid rgba(201, 185, 119, 0.2);
            border-radius: 16px;
            padding: 40px;
        }
        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: var(--gold);
        }
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
            padding: 15px;
            background: rgba(201, 185, 119, 0.08);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        .contact-item:hover {
            transform: translateX(5px);
            background: rgba(201, 185, 119, 0.12);
        }
        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--night);
            font-size: 1.2rem;
        }
        .contact-details strong {
            color: var(--gold);
            display: block;
            margin-bottom: 5px;
        }
        .contact-details a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        .contact-details a:hover {
            color: var(--gold);
        }
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--night), var(--charcoal));
            text-align: center;
            border-top: 1px solid rgba(201, 185, 119, 0.2);
        }
        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .cta-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 25px;
            color: var(--white);
        }
        .cta-description {
            font-size: 1.2rem;
            color: var(--medium-gray);
            margin-bottom: 50px;
            line-height: 1.6;
        }
        .cta-urgent {
            color: var(--gold);
            font-weight: 700;
        }
        /* Footer */
        .footer {
            background: var(--night);
            padding: 80px 0 40px;
            border-top: 1px solid rgba(201, 185, 119, 0.2);
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }
        .footer-section p {
            color: var(--medium-gray);
            margin-bottom: 15px;
            line-height: 1.6;
        }
        .footer-section strong {
            color: var(--gold);
        }
        .footer-section a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: var(--gold);
        }
        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 30px;
        }
        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(201, 185, 119, 0.1);
            border: 1px solid rgba(201, 185, 119, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background: var(--gold);
            color: var(--night);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(201, 185, 119, 0.3);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(201, 185, 119, 0.2);
            color: var(--medium-gray);
        }
        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            animation: float-pulse 3s infinite;
            transition: all 0.3s ease;
            border: 3px solid rgba(201, 185, 119, 0.3);
        }
        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-3px);
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
        }
        .whatsapp-float i {
            color: white;
            font-size: 1.8rem;
        }
        @keyframes float-pulse {
            0% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(201, 185, 119, 0.4);
            }
            70% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), 0 0 0 20px rgba(201, 185, 119, 0);
            }
            100% {
                box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(201, 185, 119, 0);
            }
        }
        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-brand { display: block; }
            .nav-menu {
                position: fixed;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(2, 2, 2, 0.98);
                flex-direction: column;
                padding: 30px 20px;
                gap: 20px;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                border-bottom: 1px solid rgba(201, 185, 119, 0.2);
                z-index: 999;
            }
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-toggle {
                display: block;
            }
            .hero-image {
                height: 300px;
                margin-bottom: 40px;
            }
            .hero-title {
                font-size: clamp(2rem, 8vw, 3.2rem);
            }
            .hero-subtitle {
                font-size: clamp(1rem, 4vw, 1.3rem);
            }
            .hero-description {
                font-size: clamp(0.95rem, 3.5vw, 1.1rem);
            }
            .cta-secondary {
                margin-left: 0;
                margin-top: 20px;
            }
            .trust-badges {
                gap: 15px;
            }
            .badge {
                font-size: 0.85rem;
                padding: 12px 20px;
            }
            .authority-content,
            .credentials-affiliations {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .map-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .google-map-wrapper {
                height: 350px;
            }
            .whatsapp-float {
                width: 55px;
                height: 55px;
            }
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }
        @media (max-width: 480px) {
            .hero-image {
                height: 250px;
            }
            .hero-title {
                font-size: clamp(1.8rem, 8vw, 2.8rem);
            }
            .authority-card {
                padding: 30px;
            }
        }
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        /* === Sección de Reseñas === */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--night) 0%, var(--dark-charcoal) 100%);
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    color: var(--medium-gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.elfsight-widget-container {
    max-width: 1000px;
    margin: 0 auto 40px;
    background: rgba(201, 185, 119, 0.03);
    border: 1px solid rgba(201, 185, 119, 0.15);
    border-radius: 16px;
    padding: 20px;
}

.reviews-cta {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }
    .reviews-title {
        font-size: 2.2rem;
    }
}
/* Centrado de títulos principales */
.hero-title,
.authority-title,
.section-title,
.section-title-map,
.cta-title,
.reviews-title,
.faq .section-title {
    text-align: center;
}

/* Asegurar que los contenedores de títulos también estén centrados */
.hero-content,
.authority-container,
.faq-container,
.map-container,
.cta-container,
.reviews-container {
    text-align: center;
}

/* Corregir alineación del contenido en Authority Hub */
.authority-content {
    text-align: initial; /* Restaura la alineación normal para las cards */
}