/* Estilos base */
body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}
/generales/
.col-1 {
    width: 10%;
}
.col-2 {
    width: 40%;
}

.col-3 {
    width: 50%;
}

/* Sección Hero */
.hero {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.meta {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.meta .autor {
    font-weight: bold;
    margin-right: 1rem;
}

.titulo {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.titulo .azul {
    color: #0056d2;
}

.imagen-hero {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    height: 440px;
    object-fit: contain;
}

.imagen-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.etiqueta {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ffe600;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 0.8rem;
    color: #000;
    border-radius: 4px;
}

.intro {
    font-size: 1rem;
    color: #444;
}

.resaltado {
    color: #0056d2;
    font-weight: bold;
}

/* Sección Hospedaje */
.hospedaje {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

.hospedaje .info {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .hospedaje .info {
        flex: 1 1 55%;
    }

    .hospedaje .imagen {
        flex: 1 1 40%;
    }
    .imagen-desc {
        flex: 1 1 40%;
        height: 710px;
    }

    .imagen-desc > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.titulo-hospedaje {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.titulo-hospedaje span {
    background: #004aad;
    color: #ffe600;
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.lista-hoteles {
    list-style: none;
    padding: 0;
}

.lista-hoteles li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.icono {
    font-size: 1.3rem;
    margin-right: 0.6rem;
}

.lista-hoteles strong {
    color: #002c77;
}

.azul {
    color: #0056d2;
    font-weight: bold;
}

/* Sección Gastronomía */
.gastronomia {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    align-items: flex-start;
}

.gastronomia .imagen {
    flex: 1 1 100%;
}

@media (min-width: 768px) {
    .gastronomia .imagen {
        flex: 1 1 40%;
    }

    .gastronomia .info {
        flex: 1 1 55%;
    }
}

.titulo-gastronomia {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.titulo-gastronomia span {
    background: #004aad;
    color: #ffe600;
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.lista-restaurantes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-restaurantes li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.lista-restaurantes .icono {
    font-size: 1.3rem;
    margin-right: 0.6rem;
}

.lista-restaurantes strong {
    color: #002c77;
}

.lista-restaurantes .azul {
    color: #0056d2;
    font-weight: bold;
}

.actividades {
    background: #f8f8f8;
    padding: 3rem 1.5rem;
}

.contenedor {
    max-width: 960px;
    margin: auto;
}

.titulo-actividad {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.titulo-actividad span {
    background: #004aad;
    color: #ffe600;
    padding: 0.1em 0.4em;
    border-radius: 4px;
}

.descripcion-actividad {
    text-align: center;
    color: #0056d2;
    font-weight: 500;
    margin-bottom: 2rem;
}

.actividades .imagen img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 2rem;
    height: 440px;
    object-fit: cover;
}

.lista-actividades {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.actividad {
    background: #fff;
    border-radius: 10px;
    padding: 1.2rem 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.numero {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0056d2;
    min-width: 40px;
}

.detalle strong {
    display: block;
    font-size: 1rem;
    color: #222;
    margin-bottom: 0.3rem;
}

.detalle p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Redes sociales */
.social {
    background-color: #0056b3;
    color: #ffe600;
    padding: 1.5rem;
    text-align: center;
}

.contenedor-social {
    max-width: 960px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social h2 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.iconos a {
    display: inline-block;
    margin: 0 0.5rem;
    font-size: 1.5rem;
    color: #ffe600;
    border: 2px solid #ffe600;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iconos a:hover {
    background-color: #ffe600;
    color: #0056b3;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 3rem 1.5rem;
    background: #fff;
}

.contenedor-news {
    max-width: 600px;
    margin: auto;
}

.icono-mail {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 1rem;
}

.newsletter h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #444;
}

.newsletter h2 span {
    color: #0056d2;
}

.newsletter p {
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.formulario input[type="email"] {
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #ccc;
    border-left: 10px solid #888;
    outline: none;
}

.formulario button {
    background-color: #8234a0;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 0.8rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.formulario button:hover {
    background-color: #682a81;
}

@media (min-width: 320px) and (max-width: 480px) {
    .imagen-hero {
        height: 220px;
    }
    .imagen-hero img {
        height: 100%;
    }
    .hero {
        padding-bottom: 0;
    }
    .hospedaje {
        padding-top: 0;
        background-color: #f8f8f8;
    }

    .actividad{
        flex-direction: column;
    }
    .imagen-desc > img{
        width: 362px;
        height: 542px;
        object-fit: cover;
        border-radius: 8px;
    }
    .gastronomia{
        flex-direction: column-reverse;
    }
    .col-1, .col-3, .col-2 {
        width: 100%;
    }

    .contenedor-social{
        flex-direction: column;
    }
}