

        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body{
            font-family: 'Poppins', sans-serif;
            background: #f5f7fa;
            color: #333;
            overflow-x: hidden;
        }

        img{
            max-width: 100%;
            display: block;
        }

        /* ===== HEADER ===== */

        header{
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background: #14C700;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }

        .navbar{
            width: 90%;
            margin: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        /* ===== LOGO ===== */

        .logo{
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo img{
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            background: white;
            padding: 5px;
        }

        .logo h1{
            font-size: 1.4rem;
            color: white;
        }

        /* ===== MENÚ ===== */

        .menu{
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .menu li a{
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: 0.3s;
        }

        .menu li a:hover{
            color: #0f172a;
        }

        /* ===== MENÚ HAMBURGUESA ===== */

        .menu-toggle{
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span{
            width: 28px;
            height: 3px;
            background: white;
            margin: 4px;
            border-radius: 5px;
            transition: 0.3s;
        }

        /* ===== HERO ===== */

        .hero{
            min-height: 100vh;
            background:
            linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1200&auto=format&fit=crop');

            background-size: cover;
            background-position: center;

            display: flex;
            justify-content: center;
            align-items: center;

            text-align: center;
            color: white;

            padding: 120px 20px 60px;
        }

        .hero-content{
            max-width: 850px;
        }

        .hero-content h2{
            font-size: 3.5rem;
            margin-bottom: 20px;
        }

        .hero-content p{
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        .btn{
            display: inline-block;
            padding: 15px 35px;
            background: #14C700;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn:hover{
            background: #109c00;
            transform: translateY(-3px);
        }

        /* ===== SECCIONES ===== */

        section{
            padding: 90px 10%;
        }

        .section-title{
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2{
            font-size: 2.5rem;
            color: #14C700;
            margin-bottom: 10px;
        }

        .section-title p{
            color: #666;
        }

        /* ===== CARDS ===== */

        .cards{
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .card{
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .card:hover{
            transform: translateY(-8px);
        }

        .card h3{
            color: #14C700;
            margin-bottom: 15px;
        }

        /* ===== FORMULARIOS ===== */

        .reserva-form{
            max-width: 700px;
            margin: auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .form-group{
            margin-bottom: 20px;
        }

        input,
        textarea{
            width: 100%;
            padding: 15px;
            border-radius: 12px;
            border: 1px solid #ccc;
            outline: none;
            font-size: 1rem;
        }

        input:focus,
        textarea:focus{
            border-color: #14C700;
            box-shadow: 0 0 8px rgba(20,199,0,0.3);
        }

        button{
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 12px;
            background: #14C700;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }

        button:hover{
            background: #109c00;
        }

        /* ===== CONTACTO ===== */

        .contacto{
            background: linear-gradient(135deg, #14C700, #109c00);
            color: white;
            text-align: center;
        }

        .contacto h2{
            color: white;
        }

        /* ===== FOOTER ===== */

        footer{
            background: #0f172a;
            color: white;
            text-align: center;
            padding: 50px 20px;
        }

        .footer-contenido{
            max-width: 1000px;
            margin: auto;
        }

        .footer-contenido h3{
            color: #14C700;
            margin-bottom: 10px;
        }

        .redes-sociales{
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 25px 0;
            flex-wrap: wrap;
        }

        .redes-sociales a{
            width: 50px;
            height: 50px;
            background: #1e293b;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            text-decoration: none;
            font-size: 1.2rem;
            transition: 0.3s;
        }

        .redes-sociales a:hover{
            background: #14C700;
            transform: scale(1.1);
        }

        .copyright{
            color: #94a3b8;
            margin-top: 20px;
        }

        /* ===== RESPONSIVE ===== */

        @media(max-width: 992px){

            .hero-content h2{
                font-size: 2.5rem;
            }

            section{
                padding: 80px 7%;
            }

        }

        @media(max-width: 768px){

            .menu-toggle{
                display: flex;
            }

            nav{
                position: absolute;
                top: 85px;
                left: 0;
                width: 100%;
                background: #14C700;
                display: none;
                flex-direction: column;
                padding: 20px 0;
            }

            nav.active{
                display: flex;
            }

            .menu{
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .hero-content h2{
                font-size: 2rem;
            }

            .hero-content p{
                font-size: 1rem;
            }

            .section-title h2{
                font-size: 2rem;
            }

            .reserva-form{
                padding: 25px;
            }

        }

        @media(max-width: 480px){

            .logo h1{
                font-size: 1rem;
            }

            .hero-content h2{
                font-size: 1.7rem;
            }

            .btn{
                width: 100%;
                text-align: center;
            }

            section{
                padding: 70px 5%;
            }

        }


