/* ===== Pagina Hospedaje (Hosting) — Casa Cometa Luna ===== */
:root { --hosting-x: 40px; }

.hosting-page {
    padding: 140px 0 90px;          /* deja aire bajo el navbar */
    background: var(--bg-dark);
}

/* ---- Bloque (seccion) ---- */
.hosting-block {
    padding: 0 var(--hosting-x);
    margin-bottom: 56px;
}

/* ---- Encabezado: icono + titulo (izq) | descripcion (der) ---- */
.hosting-head {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 48px;
    margin-top: 7rem;
}
.hosting-head-left {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hosting-ico {
    width: 68px;
    height: 68px;
    object-fit: contain;
    flex: 0 0 auto;
}
/* placeholder de icono mientras llega el real */
.hosting-ico-ph {
    width: 40px;
    height: 40px;
    border: 1.5px solid #555;
    border-radius: 6px;
    flex: 0 0 auto;
}
.hosting-head-left h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 54px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.05;
    margin: 0;
}
.hosting-desc {
    flex: 1;
    font-size: 24px;
    line-height: 1.5;
    color: #cfcfcf;
    margin: 0;
    padding-top: 8px;
}

/* ---- Dos imagenes lado a lado ---- */
.hosting-images {
    display: grid;
    grid-template-columns: 65fr 35fr;   /* izquierda ~65% | derecha ~35% */
    gap: 24px;
    align-items: stretch;               /* izq y der ocupan la misma altura */
}
/* imagen real: llena la celda -> misma altura izq/der (la mas alta define el bloque) */
.hosting-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}
/* caja placeholder mientras no hay imagen */
.hosting-img-ph {
    min-height: 340px;
    background: #1a1a1a;
    border-radius: 4px;
}

@media (max-width: 800px) {
    .hosting-head { flex-direction: column; gap: 12px; }
    .hosting-head-left { flex: 0 0 auto; }
    .hosting-head-left h2 { font-size: 34px; }
    .hosting-images { grid-template-columns: 1fr; }
    .hosting-img-ph { min-height: 200px; }
}
