* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* Paleta moderna y elegante: navy, coral y dorado */
    --bg-1: #f8fbfd;
    --bg-2: #f0f6fb;
    --primary: #0b2545;
    --primary-2: #132f5b;
    --accent: #ff6b6b;
    --gold: #f2c94c;
    --muted: #2b2b2b;
    --card: #ffffff;
    --card-border: #ececec;

    background: linear-gradient(135deg, var(--bg-1) 0%, var(--bg-2) 100%);
    min-height: 100vh;
    color: var(--muted);
    margin: 0;
    padding: 0;
}

/* ===== HEADER ===== */
.header-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 100%);
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top h1 {
    font-size: 2.2em;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    flex: 1;
    text-align: center;
}

.btn-regreso {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
    padding: 11px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-regreso:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(-3px);
}

/* ===== CONTENIDO PRINCIPAL ===== */
#turismo {
    padding: 50px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

#turismo h2 {
    font-size: 2.2em;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.descripcion {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    line-height: 1.6;
}

/* ===== GRID DE LUGARES ===== */
.lugares {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.lugar {
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.lugar:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.lugar img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.lugar:hover img {
    transform: scale(1.08);
}

.lugar h3 {
    color: var(--primary);
    font-size: 1.4em;
    margin: 20px 18px 10px;
    font-weight: 700;
}

.lugar p {
    color: #666;
    font-size: 0.95em;
    padding: 0 18px 20px;
    line-height: 1.5;
    flex-grow: 1;
}

/* ===== SECCIÓN DE INFORMACIÓN ===== */
.info-servicio {
    background: var(--card);
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--gold);
}

.info-servicio h3 {
    color: var(--primary);
    font-size: 1.6em;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.info-servicio ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.info-servicio li {
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.04) 0%, rgba(242, 201, 76, 0.04) 100%);
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 1em;
    color: var(--muted);
    border-left: 3px solid var(--accent);
}

/* ===== BOTÓN DE RESERVA ===== */
.boton-reserva {
    text-align: center;
    margin-top: 50px;
}

.boton-reserva a {
    background: linear-gradient(135deg, var(--accent) 0%, var(--gold) 100%);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15em;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.18);
}

.boton-reserva a:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 40px rgba(255, 107, 107, 0.24);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-top {
        justify-content: center;
        padding: 20px 15px;
    }

    .header-top h1 {
        font-size: 1.6em;
        order: 2;
        width: 100%;
    }

    .btn-regreso {
        font-size: 0.9em;
        padding: 10px 14px;
    }

    #turismo {
        padding: 35px 15px;
    }

    #turismo h2 {
        font-size: 1.8em;
    }

    .descripcion {
        font-size: 1em;
    }

    .lugares {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .info-servicio {
        padding: 25px 20px;
    }

    .info-servicio h3 {
        font-size: 1.4em;
    }

    .info-servicio li {
        padding: 12px 14px;
        font-size: 0.9em;
    }

    .boton-reserva a {
        padding: 13px 40px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .header-top {
        padding: 15px 10px;
        gap: 10px;
    }

    .header-top h1 {
        font-size: 1.3em;
    }

    .btn-regreso {
        font-size: 0.85em;
        padding: 8px 12px;
    }

    #turismo {
        padding: 25px 12px;
    }

    #turismo h2 {
        font-size: 1.5em;
    }

    .descripcion {
        font-size: 0.95em;
    }

    .lugares {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lugar h3 {
        font-size: 1.2em;
        margin: 15px 14px 8px;
    }

    .lugar p {
        font-size: 0.9em;
        padding: 0 14px 15px;
    }

    .info-servicio {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .info-servicio h3 {
        font-size: 1.2em;
    }

    .info-servicio ul {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .boton-reserva a {
        padding: 12px 35px;
        font-size: 0.95em;
    }

    .header-top {
        padding-top: 60px;
    }
}