/* ==========================================================================
   JELODA - Software para Moteles y Hospedaje por Horas (p/motel/dom/index.css)
   Diseño Premium Dark Glassmorphism, Bento Cards & Responsive Showcases
   Clean Code — 100% Separación de Estilos
   ========================================================================== */

/* ── Base layout ── */
.product-page-wrapper.motel-page {
    padding-top: 160px !important;
    padding-bottom: 120px !important;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.relative-z { 
    position: relative; 
    z-index: 2; 
}

.product-bg-wave {
    position: absolute; 
    top: 5%; 
    right: -250px; 
    width: 800px; 
    height: auto;
    opacity: 0.25; 
    z-index: 1; 
    pointer-events: none;
    animation: floatSlow 15s infinite ease-in-out;
}
.product-bg-wave img { 
    width: 100%; 
    height: auto; 
}

.deco-shapes .shape {
    position: absolute; 
    opacity: 0.45;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.4));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.deco-shapes .shape:hover { 
    opacity: 0.8; 
    transform: scale(1.15) rotate(5deg); 
}
.shape-hexa { 
    top: 14%; 
    left: 5%; 
    width: 110px; 
    animation: floatSlow 9s infinite ease-in-out; 
}
.shape-diamond { 
    bottom: 22%; 
    right: 5%; 
    width: 130px; 
    animation: floatSlow 8s infinite ease-in-out 1.5s; 
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}

/* ── Badge Ruby Motel ── */
.badge-motel-ruby {
    display: inline-flex !important;
    align-items: center; 
    justify-content: center;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.16) 0%, rgba(225, 29, 72, 0.04) 100%) !important;
    border: 1px solid rgba(244, 63, 94, 0.35) !important;
    color: #fb7185 !important;
    padding: 6px 18px !important; 
    border-radius: 50px !important;
    font-size: 0.78rem !important; 
    font-weight: 700 !important;
    text-transform: uppercase !important; 
    letter-spacing: 1.5px !important;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.badge-motel-ruby i {
    font-size: 15px !important;
    margin-right: 6px;
    line-height: 1 !important;
}
.badge-motel-ruby:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.25) 0%, rgba(225, 29, 72, 0.08) 100%) !important;
    border-color: rgba(244, 63, 94, 0.6) !important;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.25) !important;
}

/* ── Hero Titles & Buttons ── */
.motel-hero-title {
    font-weight: 900 !important;
    font-size: 3.2rem !important;
    line-height: 1.15 !important;
    letter-spacing: -1px;
    color: #ffffff !important;
}
.text-ruby-gradient {
    background: linear-gradient(135deg, #fb7185 0%, #e11d48 50%, #f43f5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-motel-ruby {
    background: linear-gradient(135deg, #e11d48 0%, #be123c 100%) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0 2.2rem !important;
    height: 52px !important;
    line-height: 52px !important;
    font-weight: 700 !important;
    text-transform: none !important;
    font-size: 1.05rem !important;
    box-shadow: 0 6px 22px rgba(225, 29, 72, 0.45) !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: inline-block;
    text-decoration: none !important;
}
.btn-motel-ruby:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 28px rgba(225, 29, 72, 0.65) !important;
    color: #ffffff !important;
}

/* ── Hero Stats ── */
.hero-stats-wrapper {
    margin-top: 2.2rem;
}
.stat-item-premium {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}
.stat-item-premium:hover {
    transform: translateY(-2px);
    border-color: rgba(244, 63, 94, 0.3);
}
.stat-number-premium {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
}
.stat-number-ruby {
    color: #fb7185;
}
.stat-label-premium {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ── Answer-First Callout Box (Regla Proyecto 45) ── */
.answer-first-box {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-left: 4px solid #e11d48;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}
.answer-first-box strong {
    color: #ffffff;
}

/* ── Showcase Bento Card ── */
.showcase-bento-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}
.showcase-bento-card:hover {
    border-color: rgba(244, 63, 94, 0.3);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.1);
}

.feature-lead-text {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #94a3b8;
}

.feature-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}
.feature-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.feature-bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(225, 29, 72, 0.12);
    border: 1px solid rgba(244, 63, 94, 0.25);
    color: #fb7185;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-bullet-icon i {
    font-size: 20px;
}
.feature-bullet-content strong {
    display: block;
    color: #ffffff;
    font-size: 0.98rem;
    margin-bottom: 0.2rem;
}
.feature-bullet-content span {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ── Mac Window Mockup Frame ── */
.mac-window-frame {
    background: #1e293b;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.mac-window-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
    border-color: rgba(244, 63, 94, 0.35);
}
.mac-window-header {
    background: #0f172a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mac-window-dots {
    display: flex;
    gap: 6px;
}
.mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mac-dot-red { background: #ff5f56; }
.mac-dot-yellow { background: #ffbd2e; }
.mac-dot-green { background: #27c93f; }
.mac-window-title {
    margin-left: 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.5px;
}
.mac-window-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ── Pricing Bento Card ── */
.pricing-bento-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(244, 63, 94, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.pricing-amount {
    font-size: 3.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}
.pricing-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fb7185;
    margin-right: 4px;
}
.pricing-period {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500;
}
.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.pricing-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}
.pricing-feature-item i {
    color: #10b981;
    font-size: 18px;
}

/* ── FAQ Section ── */
.faq-item-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}
.faq-item-card:hover {
    border-color: rgba(244, 63, 94, 0.3);
}
.faq-question-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.faq-answer-text {
    color: #94a3b8;
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .product-page-wrapper.motel-page {
        padding-top: 120px !important;
    }
    .motel-hero-title {
        font-size: 2.3rem !important;
    }
    .showcase-bento-card {
        padding: 1.5rem;
    }
    .pricing-amount {
        font-size: 2.8rem;
    }
}
