/* ==========================================================================
   ESTILOS REALIDAD AUMENTADA PUKARÁ DE LASANA (TEMA ASTRA)
   ========================================================================== */

:root {
    --ra-primary: #9c4f21;
    --ra-secondary: #d65130;
    --ra-dark: #66554e;
    --ra-text: #5a6672;
    --ra-bg-light: #F6F7F8;
    --ra-card-bg: #FAFAFA;
    --ra-white: #ffffff;
}

.ra-pukara-main {
    font-family: 'Teko', sans-serif;
    color: var(--ra-dark);
    background-color: var(--ra-bg-light);
    min-height: 80vh;
    width: 100%;
    overflow-x: hidden;
}

.ra-container {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.ra-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: var(--ra-white);
    text-align: center;
    width: 100%;
}

.ra-hero-overlay {
    background: linear-gradient(180deg, rgba(30, 24, 16, 0.85) 0%, rgba(30, 24, 16, 0.65) 100%);
    padding: 100px 20px 120px 20px;
}

.ra-hero .ra-title {
    font-size: 3.5rem;
    color: var(--ra-white);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1em;
    letter-spacing: 2px;
}

.ra-hero .ra-title span {
    font-size: 4.8rem;
    color: var(--ra-secondary);
    display: block;
}

.ra-hero .ra-subtitle {
    font-size: 1.8rem;
    font-family: 'Teko', sans-serif;
    color: #e7e7e7;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   Content Wrapper
   -------------------------------------------------------------------------- */
.ra-content-wrapper {
    background: var(--ra-white);
    border-radius: 12px;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.ra-content-wrapper h2 {
    font-size: 2.6rem;
    color: var(--ra-primary);
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.ra-section-subtitle {
    font-size: 1.2rem;
    color: var(--ra-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 35px auto;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Introducción
   -------------------------------------------------------------------------- */
.ra-intro {
    text-align: center;
    margin-bottom: 50px;
}

.ra-intro p {
    font-size: 1.2rem;
    color: var(--ra-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.65;
    margin-bottom: 15px;
}

/* --------------------------------------------------------------------------
   Video del Recorrido (16:9)
   -------------------------------------------------------------------------- */
.ra-video-section {
    margin-bottom: 60px;
    text-align: center;
}

.ra-video-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    background: #000;
    aspect-ratio: 16 / 9;
    position: relative;
}

.ra-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Grid Puntos de Interacción
   -------------------------------------------------------------------------- */
.ra-puntos {
    margin-bottom: 60px;
}

.ra-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ra-card {
    background: var(--ra-card-bg);
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: var(--ra-primary);
}

.ra-card h3 {
    font-size: 1.8rem;
    color: var(--ra-dark);
    margin-top: 0;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--ra-secondary);
    display: inline-block;
    padding-bottom: 5px;
}

.ra-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    border: 1px solid #e7e7e7;
}

.ra-card p {
    font-size: 1.05rem;
    color: var(--ra-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.55;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Mapa del Recorrido
   -------------------------------------------------------------------------- */
.ra-mapa-puntos-section {
    margin-bottom: 60px;
    text-align: center;
}

.ra-map-img-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e7e7e7;
}

.ra-map-img-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Horarios de Atención
   -------------------------------------------------------------------------- */
.ra-schedule-section {
    margin-bottom: 60px;
    text-align: center;
}

.ra-schedule-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--ra-card-bg);
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.ra-schedule-card.main-schedule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: #ffffff;
    border: 2px solid var(--ra-secondary);
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(214, 81, 48, 0.1);
}

.ra-schedule-icon svg {
    width: 48px;
    height: 48px;
    fill: var(--ra-secondary);
    display: block;
}

.ra-schedule-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.ra-schedule-days {
    font-size: 1.8rem;
    font-family: 'Teko', sans-serif;
    color: var(--ra-primary);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ra-schedule-hours {
    font-size: 2.2rem;
    font-family: 'Teko', sans-serif;
    color: var(--ra-dark);
    font-weight: 600;
    line-height: 1;
}

.ra-schedule-notes p {
    font-size: 1.1rem;
    color: var(--ra-text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 6px 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Banner Invitación Marketing
   -------------------------------------------------------------------------- */
.ra-invitation-banner {
    background: linear-gradient(135deg, #9c4f21 0%, #66554e 100%);
    color: var(--ra-white);
    border-radius: 12px;
    padding: 50px 35px;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 14px 35px rgba(156, 79, 33, 0.25);
}

.ra-invitation-banner h2 {
    color: var(--ra-white) !important;
    font-size: 2.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ra-invitation-banner p {
    font-size: 1.25rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
    color: #f8f7f3;
}

/* --------------------------------------------------------------------------
   Google Maps Responsive Embed
   -------------------------------------------------------------------------- */
.ra-location-section {
    margin-bottom: 40px;
    text-align: center;
}

.ra-google-map-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e7e7e7;
    position: relative;
}

.ra-google-map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* --------------------------------------------------------------------------
   Botones Generales
   -------------------------------------------------------------------------- */
.ra-actions {
    text-align: center;
}

.ra-btn-primary {
    display: inline-block;
    background-color: var(--ra-secondary);
    color: var(--ra-white);
    border: none;
    padding: 16px 40px;
    font-size: 1.45rem;
    font-family: 'Teko', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 81, 48, 0.4);
}

.ra-btn-primary:hover, .ra-btn-primary:focus {
    color: var(--ra-white);
    background-color: var(--ra-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(156, 79, 33, 0.5);
}

/* ==========================================================================
   DISEÑO RESPONSIVO (TABLETS & MÓVILES)
   ========================================================================== */

/* Tablets (hasta 921px) */
@media (max-width: 921px) {
    .ra-hero-overlay {
        padding: 70px 20px 90px 20px;
    }

    .ra-hero .ra-title {
        font-size: 2.8rem;
    }

    .ra-hero .ra-title span {
        font-size: 3.8rem;
    }

    .ra-hero .ra-subtitle {
        font-size: 1.5rem;
    }

    .ra-content-wrapper {
        padding: 40px 25px;
        margin-top: -35px;
    }

    .ra-content-wrapper h2 {
        font-size: 2.2rem;
    }

    .ra-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .ra-card img {
        height: 250px;
    }

    .ra-schedule-card.main-schedule {
        padding: 18px 20px;
    }

    .ra-invitation-banner {
        padding: 35px 25px;
    }

    .ra-invitation-banner h2 {
        font-size: 2.2rem;
    }

    .ra-google-map-wrapper iframe {
        height: 380px;
    }
}

/* Móviles (hasta 544px) */
@media (max-width: 544px) {
    .ra-container {
        padding: 0 15px;
    }

    .ra-hero-overlay {
        padding: 50px 15px 70px 15px;
    }

    .ra-hero .ra-title {
        font-size: 2.2rem;
    }

    .ra-hero .ra-title span {
        font-size: 2.9rem;
    }

    .ra-hero .ra-subtitle {
        font-size: 1.25rem;
    }

    .ra-content-wrapper {
        padding: 30px 15px;
        border-radius: 8px;
        margin-top: -25px;
    }

    .ra-content-wrapper h2 {
        font-size: 1.8rem;
    }

    .ra-section-subtitle, .ra-intro p {
        font-size: 1.05rem;
    }

    .ra-card {
        padding: 18px;
    }

    .ra-card h3 {
        font-size: 1.5rem;
    }

    .ra-card img {
        height: 200px;
    }

    .ra-schedule-container {
        padding: 25px 15px;
    }

    .ra-schedule-card.main-schedule {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        gap: 10px;
    }

    .ra-schedule-info {
        text-align: center;
    }

    .ra-schedule-days {
        font-size: 1.5rem;
    }

    .ra-schedule-hours {
        font-size: 1.9rem;
    }

    .ra-invitation-banner {
        padding: 28px 15px;
        border-radius: 8px;
    }

    .ra-invitation-banner h2 {
        font-size: 1.8rem;
    }

    .ra-invitation-banner p {
        font-size: 1.05rem;
    }

    .ra-btn-primary {
        width: 100%;
        box-sizing: border-box;
        font-size: 1.3rem;
        padding: 14px 20px;
    }

    .ra-google-map-wrapper iframe {
        height: 300px;
    }
}
