/* --- VARIABLES (COLORES Y FUENTES) --- */
:root {
    --bg-color: #F3EFE0;      /* Beige claro de fondo */
    --text-color: #5D4037;    /* Marrón oscuro para texto */
    --gold-color: #B08D55;    /* Dorado para detalles */
    --accent-color: #D4C4A8;  /* Beige más oscuro para tarjetas */

    /* --- NUEVOS COLORES PARA PADRES/PADRINOS --- */
    --crema-fondo: #ebe5cc;   /* El color de fondo de la sección */
    --cafe-fuerte: #8c6f3f;   /* El color del borde y la sombra */ 
    
    --font-serif: 'Bodoni Moda', serif;
    --font-script: 'Pinyon Script', cursive;
    --font-body: 'Montserrat', sans-serif;
    --font-title: 'Forum', serif;
}

/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TIPOGRAFÍA GENERAL --- */
h1, h2, h3 {
    font-weight: normal;
    text-align: center;
}

.font-serif { font-family: var(--font-serif); }
.font-script { font-family: var(--font-script); }
.font-title { font-family: var(--font-title); }

.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

/* --- ANIMACIÓN DE ENTRADA (FADE IN UP) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- SECCIÓN 1: PORTADA --- */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    
    /* FONDO PORTADA */
    background-image: url('assets/fondo_portada_definitivo.jpg');
    background-size: 100% 100%; 
    background-position: center;
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* DECORACIÓN ESQUINAS */
.deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    width: 35vw; 
    max-width: 400px;
    min-width: 150px;
}

.top-left { top: 0; left: 0; }
.top-right { top: 0; right: 0; }
.bottom-left { bottom: 0; left: 0; }
.bottom-right { bottom: 0; right: 0; }

/* CONTENIDO PORTADA */
.hero-content {
    z-index: 10;
    position: relative;
    text-align: center;
    padding: 2rem;
    background-color: transparent; 
    border: none;
}

.hero-content h1 {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 7rem;
    color: var(--text-color);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 400;
    text-transform: none !important; 
    
    /* Animación */
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

.btn-primary {
    background-color: #F2DBC8;
    border: none;
    padding: 15px 40px;
    font-family: var(--font-title);
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 30px;
    transition: transform 0.3s ease;
    
    /* Animación */
    opacity: 0; 
    animation: fadeInUp 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background-color: #e6c8b0;
}

/* --- SECCIÓN 2: FECHA Y FOTO PRINCIPAL --- */
.section-full-image {
    position: relative;
    height: 80vh;
    background-image: url('assets/fecha.jpeg'); 
    background-size: cover;
    background-position: center;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(113, 129, 146, 0.3); 
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content-overlay h2 {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 6rem;
    color: #F3EFE0;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0rem;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    text-transform: none !important; 
    font-style: normal;
}

.content-overlay .date {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 3.5rem;
    color: #F3EFE0;
    margin-top: 1rem;
    text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
}

/* AJUSTE MÓVIL SECCIÓN 1 y 2 */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 4.5rem; }
    .content-overlay h2 { font-size: 4rem; }
    .content-overlay .date { font-size: 2.5rem; }
}

/* --- CONTENEDORES GENERALES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* --- SECCIÓN 3: GALERÍA --- */
.gallery-grid {
    background-color: #ebe5cc;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 6rem 2rem; 
    max-width: 100% !important; 
    margin: 0;
}

@media (min-width: 901px) {
    .gallery-grid { padding: 6rem 15%; }
}

.photo-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- SECCIÓN 4: HISTORIA (FULL WIDTH) --- */
.text-photo-split {
    width: 100%; 
    display: flex; 
    align-items: stretch; 
    margin: 0;
    padding: 0;
    background-color: #8c6f3f; 
}

.text-block {
    width: 50%; 
    padding: 6rem 4rem; 
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    color: #eae4cc; 
}

.text-block h2 {
    font-family: var(--font-title);
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #eae4cc;
    letter-spacing: 2px;
    font-weight: 400;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
    color: #eae4cc; 
}

.image-block {
    width: 50%; 
    position: relative;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* --- SECCIÓN 5 & 6: PADRES Y PADRINOS --- */
.parents-section, .padrinos-section {
    background-color: var(--crema-fondo); 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem; 
    text-align: center;
    flex-wrap: wrap;
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 100% !important; 
}

.parents-card, .padrinos-card {
    background-color: var(--crema-fondo); 
    border: 3px solid var(--cafe-fuerte); 
    box-shadow: 10px 10px 0px var(--cafe-fuerte); 
    border-radius: 0; 
    padding: 3rem;
    min-width: 300px;
    flex: 1;
    max-width: 400px; 
}

.parents-card h3, .padrinos-card h3 {
    font-family: var(--font-script);
    font-size: 2.8rem; 
    margin-bottom: 1.5rem;
    color: var(--cafe-fuerte); 
}

.parents-card p, .padrinos-card p {
    color: var(--text-color); 
    font-weight: 500;
    font-size: 1.1rem;
}

.rings-icon img, .bouquet-icon img {
    width: 150px;
    height: auto;
}

/* --- SECCIÓN PARALLAX --- */
.parallax-divider {
    background-image: url('assets/paralell.jpeg');
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-content h2 {
    color: white;
    font-size: 3rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.7);
}

/* --- SECCIÓN 7: ACERCA DE LA BODA --- */
.details-grid {
    background-color: #ebe5cc; 
    padding: 6rem 2rem;
    min-height: 85vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100% !important; 
    margin: 0;
}

.details-grid .section-title {
    font-size: 4.5rem; 
    color: var(--text-color); 
    margin-bottom: 4rem;
    letter-spacing: 4px;
}

.details-row {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    text-align: center;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1;
    padding: 1rem;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-item .icon {
    width: 140px; 
    height: 140px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.detail-item h3 {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 3rem; 
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-transform: none !important; 
}

.btn-secondary {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 12px 35px; 
    background-color: var(--text-color); 
    color: #F3EFE0;
    text-decoration: underline; 
    border-radius: 30px; 
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: transform 0.3s ease;
}

.btn-secondary:hover { transform: scale(1.05); }

.detail-item p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.detail-item small {
    font-size: 1rem; 
    font-weight: 600; 
    line-height: 1.5;
    display: block;
    max-width: 250px;
    margin: 0 auto;
    color: var(--text-color);
}

/* --- SECCIÓN 8: PROGRAMA --- */
.program-section {
    background-color: #ebe5cc; 
    padding: 6rem 2rem;
    text-align: center;
    max-width: 100% !important;
    margin: 0;
}

.program-header { margin-bottom: 4rem; }

.program-title {
    font-family: var(--font-title);
    font-size: 6rem; 
    color: var(--cafe-fuerte, #8c6f3f);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.program-date {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 3.5rem;
    color: var(--cafe-fuerte, #8c6f3f);
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 4rem 2rem; 
    max-width: 1000px; 
    margin: 0 auto 5rem auto; 
}

.time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-slot span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cafe-fuerte, #8c6f3f);
    margin-bottom: 0.5rem;
}

.time-slot h4 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--cafe-fuerte, #8c6f3f);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.time-slot p {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: var(--text-color);
    max-width: 350px;
}

.cheers-icon-mobile { display: none; }

.program-footer {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
}

.cheers-icon-desktop {
    position: absolute;
    left: 10%; 
    bottom: 0;
}

.cheers-icon-desktop img, .cheers-icon-mobile img {
    width: 80px;
    height: auto;
}

.footer-note {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-color);
    font-weight: 600;
}

/* --- SECCIÓN 9: LLUVIA DE SOBRES --- */
.gift-section-split {
    background-color: var(--cafe-fuerte); 
    display: flex;
    align-items: center; 
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; 
}

.gift-text-side {
    flex: 1; 
    padding: 6rem 4rem 6rem 8rem; 
    color: #F3EFE0; 
    text-align: left; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gift-title {
    font-family: var(--font-title);
    font-size: 4rem;
    margin-bottom: 2rem;
    color: #F3EFE0;
    text-align: left; 
    letter-spacing: 3px;
}

.gift-description {
    font-size: 1.2rem;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 500px;
}

.bank-details-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    gap: 0.5rem;
}

.bank-info { font-size: 1.2rem; margin: 0; }

.bank-number-clean {
    font-family: var(--font-body); 
    font-size: 1.8rem; 
    font-weight: 700; 
    letter-spacing: 2px; 
    margin: 0;
    color: #F3EFE0;
}

.gift-image-side {
    flex: 1; 
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.gift-image-side img {
    width: 90%; 
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.3));
}

/* --- SECCIÓN 10: CONSIDERACIONES --- */
.considerations-section {
    background-color: var(--cafe-fuerte); 
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 100%;
    margin: 0;
}

.considerations-title {
    font-family: var(--font-title);
    font-size: 5rem; 
    color: #F3EFE0;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    opacity: 0; 
}

.animate-up { animation: fadeInUp 1.2s ease-out forwards; }

.considerations-text {
    font-size: 1.2rem;
    color: #F3EFE0;
    max-width: 600px; 
    margin-bottom: 4rem; 
    line-height: 1.6;
}

.footer-draw {
    width: 100%;
    max-width: 350px; 
    height: auto; 
}

/* --- SECCIÓN 11: PREGUNTAS (COMPUTADORA) --- */
.questions-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ebe5cc;
    padding: 6rem 10%;
    gap: 4rem;
    max-width: 100% !important;
    margin: 0;
}

.questions-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.questions-content h2 {
    font-family: var(--font-title);
    font-size: 4.5rem;
    color: var(--cafe-fuerte);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.questions-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cafe-fuerte);
    max-width: 380px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.wa-text {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 2.5rem;
    color: var(--cafe-fuerte);
    line-height: 1;
}

.wa-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 3.5rem;
}

.phone-list a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--cafe-fuerte);
    text-decoration: underline;
    font-weight: 500;
}

.countdown-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-box span {
    font-family: var(--font-body);
    font-size: 3.2rem;
    color: var(--cafe-fuerte);
    line-height: 1;
    font-weight: 400;
}

.time-box small {
    font-family: 'Petit Formal Script', cursive !important;
    font-size: 1.2rem;
    color: var(--cafe-fuerte);
    margin-top: 0.5rem;
    text-transform: capitalize;
}

.separator {
    font-family: var(--font-body);
    font-size: 3.2rem;
    color: var(--cafe-fuerte);
    line-height: 0.9;
}

.questions-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.questions-image-container img {
    width: 100%;
    /* ANTES: max-width: 450px; */
    max-width: 700px; /* <-- AHORA: Aumentamos el límite de anchura */
    height: auto;
    border-radius: 20px; /* Se mantienen las esquinas redondas */
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); 
}

/* --- FOOTER --- */
.footer {
    background-color: var(--cafe-fuerte); /* Cambiado al color #8c6f3f */
    padding: 2.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem; /* Espacio entre el texto y los iconos */
}

/* Estilo para el link de tu página */
.footer-link {
    color: #F3EFE0;
    font-family: var(--font-body);
    font-size: 1rem;
    letter-spacing: 2px;
    text-decoration: none; /* Quita el subrayado feo de los links */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #D4C4A8; /* Cambia a un tono más claro al pasar el mouse */
}

/* Contenedor de las redes sociales */
.social-icons {
    display: flex;
    gap: 1.5rem; /* Separación entre iconos */
}

.social-icons a {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Animación de crecimiento al pasar el mouse por el icono */
.social-icons a:hover {
    transform: scale(1.2); 
}

/* Tamaño de los iconos */
.social-icons img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    /* Si tus iconos son negros, esta línea los vuelve blancos automáticamente */
    /*filter: invert(1); */
}


/* --- RESPONSIVE (MÓVIL Y TABLET) --- */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 4.5rem; }
    .section-title { font-size: 2rem; }
    .content-overlay h2 { font-size: 4rem; } 
    .content-overlay .date { font-size: 2.5rem; }

    .gallery-grid { grid-template-columns: 1fr; }
    .photo-frame img {
        height: auto; 
        object-fit: contain; 
        max-height: 600px; 
    }

    .text-photo-split { flex-direction: column; }
    .text-block, .image-block { width: 100%; }
    .text-block { padding: 4rem 2rem; }
    .image-block { height: 500px; }

    .parents-section, .padrinos-section { flex-direction: column; }
    .details-row { flex-direction: column; }
    .parallax-divider { background-attachment: scroll; }
    .deco { width: 40vw; }

    .details-grid {
        padding: 4rem 1rem;
        min-height: auto; 
    }
    .details-grid .section-title {
        font-size: 3rem; 
        margin-bottom: 2rem;
    }
    .detail-item h3 { font-size: 2.5rem; }
    .detail-item .icon { width: 100px; height: 100px; }

    .program-title { font-size: 4.5rem; }
    .program-date { font-size: 2.8rem; }
    .program-grid {
        grid-template-columns: 1fr; 
        gap: 3rem;
    }
    
    .cheers-icon-desktop { display: none; }
    .cheers-icon-mobile {
        display: block; 
        margin: 1rem 0;
    }
    
    .program-footer { margin-top: 2rem; }
    .footer-note {
        font-size: 0.7rem;
        padding: 0 1rem;
    }

    .gift-section-split {
        flex-direction: column; 
        padding: 4rem 2rem;
    }
    .gift-text-side {
        padding: 0 0 4rem 0; 
        text-align: center; 
        align-items: center; 
    }
    .gift-title {
        text-align: center;
        font-size: 3rem;
    }
    .bank-details-block { align-items: center; }
    .bank-number-clean { font-size: 1.5rem; }
    
    .gift-image-side {
        padding: 2rem 0 0 0;
        width: 100%;
    }
    .gift-image-side img { width: 80%; }

    .considerations-title { font-size: 2.4rem; }
    .considerations-text { font-size: 1.1rem; }
    .footer-draw { max-width: 280px; }

    /* --- AJUSTES MÓVIL SECCIÓN 11 (PREGUNTAS) --- */
    .questions-section {
        flex-direction: column; 
        padding: 4rem 2rem;
        gap: 3rem;
    }
    .questions-content {
        padding: 0;
        width: 100%;
        align-items: center;
        text-align: center;
    }
    .questions-content h2 { font-size: 4rem; }
    
    .countdown-container { gap: 0.8rem; }
    .time-box span, .separator { font-size: 2.5rem; }
    
    .questions-image-container {
        width: 100%;
        padding: 0;
        justify-content: center;
    }
    .questions-image-container img {
        border-radius: 20px;
        max-width: 100%;
    }
}

/* --- REPRODUCTOR DE MÚSICA --- */
.music-container {
    position: absolute; 
    bottom: 30px; 
    right: 30px; 
    z-index: 20; 
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.music-container p {
    color: #F3EFE0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); 
}

#musicBtn {
    background: transparent; 
    border: 1px solid #F3EFE0; 
    width: 60px;
    height: 60px;
    border-radius: 50%; 
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, background 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

#musicBtn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

#musicBtn img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: invert(1); 
}

@media (max-width: 768px) {
    .music-container {
        bottom: 20px;
        right: 20px;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.playing img {
    animation: spin 3s linear infinite;
}

/* --- AJUSTES ESPECÍFICOS PARA MÓVIL EN LANDSCAPE (HORIZONTAL) --- */
@media (max-height: 600px) and (orientation: landscape) {
    
    /* 1. AJUSTE PORTADA (Imagen 6) */
    .hero-content h1 {
        font-size: 4rem; /* Reduce el tamaño del título para que quepa */
        margin-bottom: 1rem;
    }
    .btn-primary {
        padding: 10px 30px; /* Botón un poco más pequeño */
        font-size: 0.9rem;
    }

    /* 2. REPOSICIONAR ÍCONO DE MÚSICA (Imagen 7) */
    .music-container {
        bottom: auto; /* Anula la posición inferior */
        top: 20px;    /* Lo mueve arriba */
        right: 20px;  /* Lo mantiene a la derecha */
    }

    /* 3. CORRECCIÓN GALERÍA DE FOTOS (Imagen 8) */
    .gallery-grid {
        /* Cambiamos a 2 columnas para aprovechar el ancho */
        grid-template-columns: 1fr 1fr; 
        padding: 4rem 2rem;
    }
    .photo-frame img {
        height: 300px; /* Altura fija menor para que no ocupen toda la pantalla */
        object-fit: cover; /* Vuelve a recortar para llenar el cuadro */
    }

    /* 4. ARREGLO SECCIÓN DETALLES (Imagen 9) */
    .details-grid {
        padding: 4rem 2rem;
        min-height: auto;
    }
    .details-grid .section-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    .details-row {
        /* Obligamos a que se apilen verticalmente, igual que en portrait */
        flex-direction: column; 
        gap: 3rem;
    }
    .detail-item {
        /* Reduce el padding para que ocupen menos espacio vertical */
        padding: 0; 
    }
    .detail-item .icon {
        /* Iconos más pequeños para esta vista */
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }
    .detail-item h3 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .btn-secondary {
        margin-top: 0;
        padding: 10px 25px;
        font-size: 1rem;
    }
}