/* estilos generales */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #08090d;
    color: #f8fafc;
    font-family: "DM Sans", sans-serif;
    line-height: 1.7;
}


/* encabezado */

.encabezado {
    padding: 55px 30px 35px;
    text-align: center;
}

.titulo-principal {
    color: #f2c078;
    font-family: "Playfair Display", serif;
    font-size: 68px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
}

.subtitulo {
    margin-top: 18px;
    color: #94a3b8;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 2px;
}

.separador {
    width: 88%;
    margin: 21px auto 0;
    border: 0;
    border-top: 1px solid #1e293b;
}


/* navegacion */

.navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    margin-top: 21px;
}

.enlace-nav {
    position: relative;
    padding: 8px 0;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.enlace-nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #e5e0c9;
    transition: 0.3s ease;
}

.enlace-nav:hover {
    color: #f8fafc;
}

.enlace-nav:hover::after {
    width: 100%;
}

.enlace-activo {
    color: #e5e0c9;
}

.enlace-activo::after {
    width: 100%;
}


/* contenido del index */

.contenido-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 45px 30px 85px;
}

.presentacion {
    width: 900px;
    text-align: center;
}


/* video */

.contenedor-video {
    width: 100%;
}

.video-principal {
    display: block;
    width: 100%;
    border: 1px solid #263449;
    border-radius: 14px;
}


/* titulo del video */

.titulo-video {
    margin-top: 28px;
    color: #f8fafc;
    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.5px;
}


/* boton */

.contenedor-boton {
    margin-top: 28px;
}

.boton-principal {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #e5e0c9;
    border-radius: 50px;
    color: #e5e0c9;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.boton-principal:hover {
    background-color: #e5e0c9;
    color: #08090d;
}


/* contenido de inicio */

.contenido {
    width: 1100px;
    margin: 0 auto;
}

.seccion {
    padding: 30px 0;
}

.etiqueta {
    margin-bottom: 12px;
    color: #e5e0c9;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.titulo-seccion {
    color: #f8fafc;
    font-family: "Playfair Display", serif;
    font-size: 43px;
    font-weight: 600;
    line-height: 1.2;
}

.texto {
    width: 850px;
    margin-top: 25px;
    color: #a8b1c0;
    font-size: 16px;
}


/* bienvenida */

.bienvenida {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.texto-bienvenida {
    width: 600px;
    margin-top: 25px;
    color: #a8b1c0;
    font-size: 16px;
}

/* mapa */

.contenedor-mapa {
    text-align: center;
}

.imagen-mapa {
    display: block;
    width: 500px;
    height: auto;
    margin: 0 auto;
    border: 1px solid #263449;
    border-radius: 10px;
}


/* lista */

.lista {
    width: 850px;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.lista li {
    padding: 18px 20px;
    border-bottom: 1px solid #1e293b;
    color: #a8b1c0;
    font-size: 16px;
}

.lista li::before {
    content: "✦";
    margin-right: 15px;
    color: #e5e0c9;
}


/* tabla */

.contenedor-tabla {
    width: 100%;
    margin-top: 35px;
}

.tabla-destinos {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.tabla-destinos th {
    padding: 18px 20px;
    background-color: #10131a;
    border-bottom: 1px solid #e5e0c9;
    color: #f2c078;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tabla-destinos td {
    padding: 18px 20px;
    border-bottom: 1px solid #1e293b;
    color: #a8b1c0;
    font-size: 15px;
}

.tabla-destinos tr:hover {
    background-color: #10131a;
}


/* destinos */

.destino {
    width: 600px;
    margin-top: 25px;
    color: #a8b1c0;
    font-size: 16px;
}

.imagen-destino {
    display: block;
    width: 400px;
    height: 200px;
    margin-top: 30px;
    object-fit: cover;
    border: 1px solid #263449;
    border-radius: 10px;
}

.selector-destinos {
    display: block;
    width: 400px;
    margin-top: 20px;
    padding: 15px 16px;
    background-color: #10131a;
    border: 1px solid #263449;
    border-radius: 6px;
    color: #a8b1c0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.selector-destinos:hover {
    border-color: #e5e0c9;
    color: #f8fafc;
}

.selector-destinos option {
    background-color: #10131a;
    color: #f8fafc;
}

.seccion-final {
    text-align: center;
}

.enlace-arriba {
    color: #e5e0c9;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.enlace-arriba:hover {
    color: #f2c078;
}

.audio-destinos {
    display: block;
    width: 350px;
    margin: 0 auto;
    color-scheme: dark;
}


/* pie de pagina */

.pie-pagina {
    padding: 25px 30px;
    text-align: center;
}

.pie-pagina .separador {
    margin-top: 0;
}

.copyright {
    margin-top: 18px;
    color: #64748b;
    font-size: 13px;
    letter-spacing: 1px;
}

/* formulario de contacto */

.formulario-contacto {
    width: 700px;
    margin-top: 40px;
}

.campo-formulario {
    margin-bottom: 25px;
}

.campo-formulario label {
    display: block;
    margin-bottom: 8px;
    color: #e5e0c9;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

.campo-formulario input {
    width: 700px;
    padding: 14px 16px;
    background-color: #10131a;
    border: 1px solid #263449;
    border-radius: 6px;
    color: #f8fafc;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    outline: none;
}

.campo-formulario input:focus {
    border-color: #e5e0c9;
}


/* grupos del formulario */

.grupo-formulario {
    margin-top: 35px;
}

.grupo-formulario h3 {
    margin-bottom: 18px;
    color: #f8fafc;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 600;
}


/* opciones */

.opcion-formulario {
    margin-bottom: 12px;
}

.opcion-formulario input {
    margin-right: 8px;
    accent-color: #e5e0c9;
}

.opcion-formulario label {
    color: #a8b1c0;
    font-size: 15px;
}


/* selector del formulario */

.grupo-formulario select {
    width: 700px;
    padding: 14px 16px;
    background-color: #10131a;
    border: 1px solid #263449;
    border-radius: 6px;
    color: #a8b1c0;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    outline: none;
}

.grupo-formulario select:focus {
    border-color: #e5e0c9;
}


/* mensaje */

.grupo-formulario textarea {
    width: 700px;
    padding: 14px 16px;
    background-color: #10131a;
    border: 1px solid #263449;
    border-radius: 6px;
    color: #f8fafc;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    outline: none;
    resize: vertical;
}

.grupo-formulario textarea:focus {
    border-color: #e5e0c9;
}


/* botones */

.botones-formulario {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.boton-formulario {
    padding: 13px 35px;
    background-color: #e5e0c9;
    border: 1px solid #e5e0c9;
    border-radius: 50px;
    color: #08090d;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.boton-formulario:hover {
    background-color: transparent;
    color: #e5e0c9;
}

.boton-limpiar {
    background-color: transparent;
    color: #e5e0c9;
}

.boton-limpiar:hover {
    background-color: #e5e0c9;
    color: #08090d;
}

/* actividades */

.actividad-introduccion {
    width: 850px;
}

.actividad-introduccion p {
    margin-top: 25px;
    color: #a8b1c0;
    font-size: 16px;
}

.actividades {
    margin-top: 20px;
}

.actividad-region {
    width: 850px;
    margin-top: 50px;
    padding-bottom: 35px;
}

.actividad-region h2 {
    color: #f8fafc;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 600;
}

.actividad-region p {
    margin-top: 18px;
    color: #a8b1c0;
    font-size: 16px;
}


/* gastronomia */

.gastronomia {
    margin-top: 20px;
}

.gastronomia>p {
    width: 850px;
    margin-top: 25px;
    color: #a8b1c0;
    font-size: 16px;
}

.plato {
    width: 850px;
    margin-top: 55px;
    padding-bottom: 45px;
    border-bottom: 1px solid #1e293b;
}

.plato h3 {
    color: #f2c078;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 600;
}

.plato p {
    width: 850px;
    margin-top: 18px;
    color: #a8b1c0;
    font-size: 16px;
}

.plato img {
    display: block;
    width: 400px;
    height: 300px;
    margin-top: 30px;
    object-fit: cover;
    border: 1px solid #263449;
    border-radius: 10px;
}