/* Contenedor Interior */
.inner-page {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Sección Hero (Neuromarketing: Foco y Emoción) */
.hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    text-align: center;
}

/* Máscara con degradado para legibilidad perfecta */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.8) 0%, rgba(5,5,5,0.4) 50%, var(--bg) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-headline {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    color: #ccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Botonera CTA */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--fg);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.btn-whatsapp {
    background: #25D366; /* Verde psicológico para acción/contacto */
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Sección Beneficios */
.benefits-section {
    padding: 8vh 5vw;
    background: var(--bg);
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--fg);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--accent);
    line-height: 1.6;
}

/* Modal de Precios (Glassmorphism UI) */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px); /* Efecto cristal */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    background: #111;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    transform: translateY(50px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-header h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--accent);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.close-modal:hover { color: #ff3366; }

.modal-body {
    padding: 30px;
    overflow-y: auto;
}

/* Tabla Responsiva */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 25px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.pricing-table th, .pricing-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pricing-table th {
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pricing-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

/* Políticas Legales (Micro-copy) */
.rental-policies {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    background: rgba(255,255,255,0.02);
    padding: 15px;
    border-radius: 8px;
}

.rental-policies strong { color: var(--accent); }

@media (max-width: 768px) {
    .modal-body { padding: 20px; }
    .cta-group { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
}