/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}
.hoteles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hotel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: white;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    color: #222;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.hotel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    color: #0b5cff;
}

/* Responsive */
@media (max-width: 992px) {
    .hoteles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hoteles-grid {
        grid-template-columns: 1fr;
    }
}
/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #dde663;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
}

.logo img {
    height: 52px;
    width: auto;
    margin-right: 30px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.nav a:hover {
    text-decoration: underline;
}

.nav .btn {
    background: #ffd43b;
    color: #000;
    padding: 8px 14px;
    border-radius: 5px;
}

/* HERO */
.hero {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
    transition: background-image 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero-content p {
    margin-bottom: 25px;
}

.btn-primary {
    background: #ffd43b;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    color: #000;
}

.btn-secondary {
    background: #0b7285;
    color: white;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

/* SECCIONES */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section.alt {
    background: #f1f3f5;
}

/* FOOTER */
.footer {
    background: #0b7285;
    color: white;
    text-align: center;
    padding: 20px;
}

/* PLAN TURÍSTICO */
.plan-card {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.plan-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.plan-images img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.plan-content {
    padding: 30px;
    text-align: left;
}

.plan-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #0b7285;
}

.plan-day {
    margin-bottom: 20px;
}

.plan-day h4 {
    margin-bottom: 10px;
    color: #333;
}

.plan-day ul {
    padding-left: 20px;
}

.plan-day li {
    margin-bottom: 6px;
}

.plan-actions {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .plan-images {
        grid-template-columns: 1fr;
    }
    .plan-images img {
        height: 200px;
    }
    .plan-actions {
        flex-direction: column;
    }
}
.ofertas-container .plan-card .plan-images {
    display: block;   /* deja de ser grid */
    width: 100%;      /* ocupa todo el ancho */
}
