:root {
    /* Cambiá solo esta línea para modificar el fondo general de todo el sitio */
    --color-fondo: #f7f6f3;
}

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

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #1c1c1c;
    background: var(--color-fondo);
    font-size: 16px;
}

.contenedor {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 16px;
}

/* Buscador */
.hero { text-align: center; max-width: 680px; margin: 8px auto 28px; }

.hero-titulo {
    font-size: 34px;
    line-height: 1.15;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.hero-parrafo {
    font-size: 16px;
    line-height: 1.55;
    color: #4a4a4a;
}

@media (max-width: 600px) {
    .hero-titulo { font-size: 26px; }
}

.buscador {
    display: flex;
    gap: 8px;
    max-width: 560px;
    margin: 0 auto 32px;
}

.buscador input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.buscador button {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: #0f6e56;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* Grilla de cards, responsive sin media queries manuales */
.grilla {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e0da;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    animation: aparecer 0.35s ease both;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #cfcdc4;
}

@keyframes aparecer {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .card { animation: none; }
    .card:hover { transform: none; }
}

.card-link {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-decoration: none;
    color: inherit;
}

.card-share {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #1c1c1c;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px 4px 8px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.card-share:hover { background: #25D366; color: #fff; }

.card-verificado {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    color: #1c7a4a;
    background: rgba(255, 255, 255, 0.92);
    padding: 3px 8px;
    border-radius: 999px;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.card-body { padding: 16px; flex: 1; }

.card-nombre { font-size: 17px; font-weight: 600; margin-bottom: 4px; }

.card-zona { font-size: 13px; color: #6a6a6a; margin-bottom: 8px; }

.card-desc { font-size: 14px; color: #3a3a3a; margin-bottom: 10px; line-height: 1.4; }

.card-tags { display: flex; gap: 6px; flex-wrap: wrap; }

.card-comodidades {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.comodidad-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #4a4a4a;
    background: #f3f2ee;
    padding: 3px 8px;
    border-radius: 999px;
}

.comodidad-chip svg { flex-shrink: 0; }

.card-cta {
    display: block;
    text-align: center;
    padding: 12px;
    background: #0059b2;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.card:hover .card-cta { background: #00468a; }

.tag {
    font-size: 11px;
    background: #eef3ea;
    color: #3b6d11;
    padding: 3px 8px;
    border-radius: 999px;
}

.titulo-seccion { font-size: 22px; margin: 32px 0 16px; }

.contenedor-angosta { max-width: 640px; }

.form-alojamiento {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.form-alojamiento label {
    font-size: 14px;
    font-weight: 600;
    margin-top: 14px;
    margin-bottom: 2px;
}

.form-alojamiento input[type="text"],
.form-alojamiento input[type="email"],
.form-alojamiento input[type="tel"],
.form-alojamiento input[type="url"],
.form-alojamiento input[type="number"],
.form-alojamiento select,
.form-alojamiento textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    width: 100%;
}

.form-alojamiento textarea { resize: vertical; }

.form-fieldset {
    border: 1px solid #e2e0da;
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 14px;
}

.form-fieldset legend {
    font-size: 14px;
    font-weight: 600;
    padding: 0 4px;
}

.form-radio {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 400 !important;
    margin: 4px 16px 4px 0 !important;
    font-size: 14px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400 !important;
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.4;
    margin-top: 20px !important;
}

.form-checkbox input { margin-top: 3px; }

.form-nota { font-size: 13px; color: #7a7a7a; margin-top: 10px; }

.form-submit {
    margin-top: 20px;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.form-submit:hover { background: #1eb857; }

.migas { font-size: 13px; color: #7a7a7a; margin-top: 20px; }
.migas a { color: #7a7a7a; text-decoration: none; }
.migas a:hover { text-decoration: underline; }

.texto-intro { font-size: 15px; color: #3a3a3a; line-height: 1.6; max-width: 760px; margin-bottom: 24px; }

.lista-destinos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 900px) {
    .lista-destinos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .lista-destinos { grid-template-columns: 1fr; }
}

.destino-ciudad {
    border: 1px solid #e2e0da;
    border-radius: 12px;
    padding: 16px;
}

.destino-ciudad-nombre {
    font-size: 17px;
    font-weight: 600;
    color: #1c1c1c;
    text-decoration: none;
}
.destino-ciudad-nombre:hover { color: #0059b2; }

.destino-zonas { margin-top: 4px; display: flex; flex-wrap: wrap; gap: 10px; }
.destino-zonas a { font-size: 14px; color: #6a6a6a; text-decoration: none; }
.destino-zonas a:hover { color: #0059b2; text-decoration: underline; }

/* Header sticky con logo que se achica al scrollear */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #e8e6e0;
}

.site-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.2s ease;
}

.logo-img {
    height: 38px;
    display: block;
    transition: height 0.2s ease;
}

.site-header.achicado .site-header-inner {
    padding: 8px 16px;
}

.site-header.achicado .logo-img {
    height: 26px;
}

.site-nav { display: flex; gap: 20px; }

.site-nav a {
    color: #6a6a6a;
    text-decoration: none;
    font-size: 14px;
}

.site-nav a:hover { color: #0059b2; }

/* Footer: azul del logo, todo centrado */
.site-footer {
    background: #0059b2;
    color: #eaf2fb;
    margin-top: 48px;
}

.site-footer-inner {
    max-width: 620px;
    margin: 0 auto;
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.footer-marca {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.footer-marca-punto { color: #b2cde8; }

.footer-redes {
    display: flex;
    gap: 18px;
}

.footer-redes a { color: #eaf2fb; opacity: 0.85; }
.footer-redes a:hover { opacity: 1; }

.footer-cta {
    font-size: 13px;
    color: #eaf2fb;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    padding: 6px 14px;
    border-radius: 999px;
}

.footer-cta:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.site-footer-bottom {
    text-align: center;
    padding: 12px 16px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    color: #8fa9c4;
}

.site-footer-bottom a {
    font-size: 12px;
    color: #b6cfe8;
    text-decoration: none;
}

.site-footer-bottom a:hover { color: #fff; text-decoration: underline; }

.footer-separador { margin: 0 8px; opacity: 0.5; }
