        /* === RESET Y ESTILOS BASE === */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
         :root {
            --color-primary: #d4af37;
            --color-dark: #333;
            --color-light: #f9f9f9;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--color-dark);
            overflow-x: hidden;
        }
        
        h1,
        h2,
        h3 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        a {
            text-decoration: none;
            color: var(--color-primary);
            transition: all 0.3s;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        /* === HERO SECTION === */
        
        .hero {
            position: relative;
            height: 100vh;
            background: url('../img/pexels-caleboquendo-3162022.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            animation: fadeIn 1s ease-out;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            padding: 0 20px;
            animation: slideUp 1s ease-out;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
        }
        /* === BOTONES === */
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--color-primary);
            color: #000 !important;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .btn:hover {
            background: #b38f2a;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
        }
        /* === SECCIÓN SERVICIOS === */
        
        .services {
            padding: 80px 0;
            background: var(--color-light);
        }
        
        .services h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
            color: var(--color-dark);
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .service-info {
            padding: 20px;
        }
        
        .service-info h3 {
            margin-bottom: 10px;
            color: var(--color-primary);
        }
        
        .price {
            font-weight: bold;
            color: var(--color-dark);
            font-size: 1.2rem;
            margin: 15px 0;
        }
        /* === GALERÍA === */
        
        .gallery {
            padding: 80px 0;
        }
        
        .gallery h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 1/1;
        }
        
        .gallery-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s;
            filter: grayscale(20%);
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.1);
            filter: grayscale(0%);
        }
        /* === FORMULARIO === */
        
        .booking {
            padding: 80px 0;
            background: var(--color-light);
        }
        
        .booking h2 {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.5rem;
        }
        
        .booking-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--color-primary);
            outline: none;
            box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
        }
        /* === FOOTER === */
        
        footer {
            background: var(--color-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .social-links {
            margin: 20px 0;
        }
        
        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            color: var(--color-primary);
        }
        /* === ANIMACIONES === */
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideUp {
            from {
                transform: translateY(50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        /* === WHATSAPP BUTTON === */
        
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white !important;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
            transition: all 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            background: #128C7E;
        }
        /* === RESPONSIVE === */
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .service-grid {
                grid-template-columns: 1fr;
            }
            .booking-form {
                padding: 20px;
            }
        }
        /* === SCROLL SUAVE === */
        
        html {
            scroll-behavior: smooth;
        }
        /* === BOTÓN SUBIR === */
        
        .subir-btn {
            position: fixed;
            bottom: 100px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--color-primary);
            color: #000;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .subir-btn.mostrar {
            opacity: 1;
            visibility: visible;
        }
        
        .subir-btn:hover {
            background: #b38f2a;
            transform: translateY(-3px);
        }
        /* Mensaje flotante */
        
        #mensaje {
            position: fixed;
            top: 3rem;
            right: 20px;
            background: #28a745;
            color: #fff;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            z-index: 9999;
            font-weight: bold;
        }
        
        #mensaje.mostrar {
            opacity: 1;
            transform: translateY(0);
        }