body {
            font-family: 'Josefin Slab', serif;
        }

        .hero {
            height: 80vh;
            background-size: cover;
            background-position: center;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
        }

        footer {
            padding: 40px 0;
            background-color: #111;
            color: white;
            text-align: center;
            /*margin-top: 60px;*/
        }

        .hero-slide {
            height: 90vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Sombra suave */
        .hero-slide::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.35);
            z-index: 1;
        }

        .hero-subtitle {
            font-size: 22px;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 70px;
            font-weight: 800;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .hero-description {
            font-size: 18px;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        /* BOTÓN ESTILO ELEGANTE */
        .hero-button {
            padding: 12px 35px;
            border: 2px solid #ffffff;
            color: white;
            text-decoration: none;
            font-weight: 600;
            border-radius: 40px;
            transition: 0.3s;
        }

        .hero-button:hover {
            background-color: #ffffff;
            color: black;
        }

        /* Carrusel flechas invisibles */
        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }

        .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        /* CONTENEDOR TOTAL */
        .experiencia-wrapper {
            width: 100%;
            overflow-x: hidden;
        }

        /* PARTE SUPERIOR CREMA (FULL WIDTH) */
        .experiencia-top-full {
            background-color: #f2ebdd;
            padding: 30px 0 1px;
            width: 100%;
            position: relative;
        }

        /* TÍTULO */
        .experiencia-title {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #7c3f22;
            border-bottom: 3px solid #7c3f22;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 25px;
        }

        /* TEXTO */
        .experiencia-text {
            font-size: 1.1rem;
            color: #5a3a2e;
            line-height: 1.7;
        }

        /* CANGREJO SOBREPUESTO */
        .cangrejo-img {
            width: 85%;
            max-width: 1090px;
            position: absolute;
            
            right: -200px;
            bottom: -220px;
            /* SOLO EL CANGREJO se mete al fondo naranja */
            opacity: 0.95;
            z-index: 3;
        }

        /* PARTE INFERIOR NARANJA */
        .experiencia-bottom-full {
            background: url('/image/slade.png') center/cover no-repeat, #a24c22;
            padding: 50px 0 50px;
            width: 100%;
            position: relative;
        }

        /* IMÁGENES */
        .exp-img {
            width: 100%;
            border-radius: 12px;
            height: 260px;
            object-fit: cover;
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .exp-img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
        }

        /* BOTÓN MENÚ */
        .menu-btn {
            display: inline-block;
            padding: 14px 50px;
            border: 2px solid #fff;
            color: #fff;
            font-size: 1.3rem;
            border-radius: 40px;
            text-decoration: none;
            letter-spacing: 2px;
            transition: 0.35s ease;
        }

        .menu-btn:hover {
            background: #fff;
            color: #a24c22;
            transform: translateY(-3px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
        }



        /* SECCIÓN RESERVA */
        .reserva-section {
            background-color: #f2ebdd;
            padding: 80px 0;
        }

        .reserva-img {
            width: 100%;
            max-width: 400px;
            opacity: 0.9;
        }

        /* TEXTO CENTRAL */
        .reserva-subtitle {
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: #9b542f;
            margin-bottom: 10px;
        }

        .reserva-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #9b542f;
            letter-spacing: 3px;
            margin-bottom: 30px;
        }

        /* BOTÓN */
        .reserva-btn {
            display: inline-block;
            padding: 12px 40px;
            border: 2px solid #9b542f;
            color: #9b542f;
            font-size: 1.2rem;
            border-radius: 40px;
            text-decoration: none;
            letter-spacing: 2px;
            transition: 0.35s ease;
        }

        .reserva-btn:hover {
            background: #9b542f;
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .reserva-section {
                text-align: center;
            }

            .reserva-img {
                display: none;
            }
        }