:root {
    --color-bg: #F5F5F7;
    --color-text: #111111;
    --color-text-soft: #555555;
    --color-dark: #02010D;

    --color-borgia: #e41725;
    --color-donpablo: #0033FF;
    --color-gandia: #C50B6D;

    --radius-card: 18px;
    --shadow-card: 0 10px 25px rgba(0,0,0,0.04);
}

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

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
}

.page {
    max-width: 1120px;
    margin: 0 auto;
    padding: 32px 16px 64px;
}

/* HEADER */
.header {
    text-align: center;
    margin-bottom: 40px;
}

.header-logo {
    max-width: 260px;
    margin: 0 auto 16px;
}

.header-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.header-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-soft);
    max-width: 640px;
    margin: 0 auto;
}

/* GRID HOTELES */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

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

@media (max-width: 640px) {
    .hotels-grid {
        grid-template-columns: 1fr;
    }
}

.hotel-card {
    background: #FFFFFF;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-card__strip {
    height: 6px;
    width: 100%;
}

.hotel-card__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.hotel-card__body {
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.hotel-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hotel-card__stars {
    font-size: 0.9rem;
    color: #F4B400; /* amarillo suave para las estrellas */
}

.hotel-card__type {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-soft);
}

.hotel-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-soft);
    margin-top: 4px;
}

.hotel-card__location {
    font-size: 0.85rem;
    margin-top: 6px;
}

.hotel-card__footer {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.hotel-card__phone {
    font-size: 0.85rem;
    color: var(--color-text-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    color: #fff;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    opacity: 0.94;
}

.btn--borgia { background: var(--color-borgia); }
.btn--donpablo { background: var(--color-donpablo); }
.btn--gandia { background: var(--color-gandia); }

/* NEWSLETTER */
.newsletter {
    background: var(--color-dark);
    border-radius: 24px;
    padding: 26px 22px;
    color: #FFFFFF;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 18px;
    align-items: center;
}

@media (max-width: 768px) {
    .newsletter {
        grid-template-columns: 1fr;
    }
}

.newsletter-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.newsletter-text {
    font-size: 0.95rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1 1 180px;
    padding: 10px 12px;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form button {
    border-radius: 999px;
    border: none;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: #FFFFFF;
    color: var(--color-dark);
    transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    opacity: 0.95;
}
