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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #ffffff, #FF8527);
    min-height: 100vh;
}

h1 {
    font-family: amifer, sans-serif;
    font-style:normal;
    font-weight: 900;
    color: #000000;
    font-size: 22px;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 16px;
}

/* ===== HEADER Y NAVEGACIÓN (MOBILE FIRST) ===== */
header {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    gap: 1rem;
}

.logo-y-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
}

.imglogo {
    width: 4rem;
    flex-shrink: 0;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

.contenedor-de-la-lista {
    position: static;
    left: auto;
    transform: none;
    width: 100%;
}

.lista {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.lista-objetos {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: auto;
    text-align: center;
}

.lista-objetos.active {
    background-color: #FF8527;
}

.lista-objetos:hover,
.lista-objetos:active,
.lista-objetos:focus {
    background-color: #FF8527;
    color: #fff;
    transform: scale(1.05);
}

/* ===== FILMIX LOGO SECCION ===== */
.filmix-contenedor {
    background-color: #AF64E3;
    text-align: center;
    padding: 1.5rem;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filmix-logo {
    height: 300px;
    max-width: 100%;
    object-fit: contain;
}

/* ===== SECCIÓN PRINCIPAL ===== */
.seccion-principal {
    padding: 1.5rem 1rem 0.5rem 1rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 0 auto;
}

.seccion-principal h1 {
    width: 100%;
}

.seccion-principal p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
    font-size: 16px;
}

/* ===== EQUIPO - INTEGRANTES ===== */
.equipo-seccion {
    width: 100%;
    background: transparent;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.titulo-equipo {
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contenedor-integrantes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.caja-integrante {
    background-color: #000000;
    color: white;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: none;
    transition: all 0.3s ease;
    width: 100%;
    flex-direction: column;
    text-align: center;
}

.foto-integrante {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    border: 3px solid white;
}

.info-integrante h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.info-integrante p {
    margin: 0 0 1rem 0;
    font-size: 0.8rem;
}

.boton-ver {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background-color: #FF8527;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
    width: auto;
    max-width: 150px;
}

.boton-ver:hover {
    background-color: #AF64E3;
    transform: scale(1.05);
}

/* ===== FACULTAD SECCION ===== */
.facultad-seccion {
    width: 100%;
    background: transparent;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
}

.titulo-facultad {
    font-size: 1.5rem;
    color: #000000;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.2;
    width: 100%;
}

.facultad-detalle {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.facultad-info {
    background-color: white;
    border: 2px solid black;
    border-radius: 8px;
    padding: 1.5rem;
    width: 100%;
    min-width: 280px;
    max-width: none;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.facultad-info:hover {
    transform: scale(1.05);
}

.facultad-detalle img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    align-self: center;
}

.facultad-detalle img.logo-dgpc {
    width: 80px;
    height: 80px;
}

.facultad-detalle p {
    font-size: 1rem;
    color: #000000;
}

/* ===== CTA CIERRE ===== */
.cta-cierre {
    position: relative;
    text-align: center;
    padding: 3rem 1.5rem;
    margin-top: 0.5rem;
    display: grid;
    gap: 1.5rem;
    justify-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    overflow: visible;
}

.cta-cierre h2,
.cta-cierre p,
.cta-cierre .btn-cta {
    position: relative;
    z-index: 2;
}

.cta-cierre h2 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: center;
}

.cta-cierre p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.btn-cta {
    display: inline-block;
    background: black;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #AF64E3;
    transform: scale(1.05);
}

/* ===== ESTRELLAS DECORATIVAS ===== */
.estrellas-decorativas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.estrellas-decorativas .estrella {
    pointer-events: all;
}

.estrella {
    position: absolute;
    width: 60px;
    height: 60px;
    animation: flotar 3s ease-in-out infinite, brillar 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(255, 133, 39, 0.6));
}

.estrella:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 0 25px rgba(175, 100, 227, 1));
    animation: flotar 3s ease-in-out infinite, brillar 0.5s ease-in-out infinite;
}

/* Mobile y Tablet: Solo 2 estrellas, al lado del botón */
.estrella-1 {
    left: 15%;
    top: 65%;
    animation-delay: 0s;
}

.estrella-2 {
    display: none;
}

.estrella-3 {
    right: 15%;
    top: 65%;
    animation-delay: 0.5s;
}

.estrella-4 {
    display: none;
}

@keyframes flotar {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes brillar {
    0%, 100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(255, 133, 39, 0.6));
    }
    50% {
        opacity: 0.7;
        filter: drop-shadow(0 0 20px rgba(255, 133, 39, 0.9));
    }
}

/* ===== FOOTER ===== */
footer {
    margin: 0;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border: none;
    font-size: 0.9rem;
    line-height: 1.6;
    overflow: hidden;
}

.footer-navegacion {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 0 1rem;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.boton-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 133, 39, 0.1);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 133, 39, 0.2);
    color: white;
    font-size: 1.2rem;
}

.boton-footer:hover {
    background: rgba(175, 100, 227, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(175, 100, 227, 0.3);
    border-color: rgba(175, 100, 227, 0.4);
}

.boton-footer img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.boton-footer:hover img {
    transform: scale(1.2);
}

footer p {
    margin: 1rem 0;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 1rem;
}

/* ===== BOTONES PROYECTO ===== */
.botones-proyecto {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.boton-proyecto {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    justify-content: center;
}

.boton-proyecto::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.boton-proyecto:hover::before {
    left: 100%;
}

.boton-proyecto:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.boton-proyecto .icono {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.boton-proyecto:hover .icono {
    transform: scale(1.2) rotate(10deg);
}

.boton-proyecto .texto-boton {
    position: relative;
    z-index: 1;
}

.boton-mobile {
    background: linear-gradient(135deg, #AF64E3, #8B3FC9);
    color: white;
}

.boton-mobile:hover {
    background: linear-gradient(135deg, #8B3FC9, #6F28A8);
}

.boton-desktop {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.boton-desktop:hover {
    background: linear-gradient(135deg, #333333, #000000);
}

.boton-video {
    background: linear-gradient(135deg, #FF8527, #FF6600);
    color: white;
}

.boton-video:hover {
    background: linear-gradient(135deg, #FF6600, #E85500);
}


/* ===== PLAN PAGE ===== */
.plan-principal {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-contenido {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.plan-contenido h1 {
    text-align: center;
    font-size: 22px;
    color: #000000;
    margin-bottom: 1rem;
}

.plan-contenido h2 {
    text-align: center;
    font-size: 1rem;
    color: #000000;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-contenido p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
    text-align: left;
}

.plan-imagenes {
    width: 100%;
    padding: 0 1rem 2rem 1rem;
    margin: 0 auto;
}

.contenedor-doble {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-direction: column;
}

.contenedor-doble .imagen-plan {
    flex: 1;
}

.contenedor-doble img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.imagen-plan {
    background-color: transparent;
    border: none;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
}

.contenedor-simple {
    margin-top: 1rem;
}

.contenedor-simple img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===== VIDEO SECCION ===== */
.video-seccion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-contenedor {
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    border: none;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
    margin: 0 auto;
}

.video-contenedor video {
    width: 100%;
    border-radius: 8px;
    display: block;
}

#video-title {
    text-align: center;
    font-size: 1.5rem;
    color: #000000;
    margin: 2rem 0 1rem 0;
    width: 100%;
}

#asamblea-title {
    text-align: center;
    font-size: 1.5rem;
    color: #000000;
    margin: 2rem 0 1rem 0;
    width: 100%;
}

.video-seccion p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ===== MAPA SECCION ===== */
.mapa-seccion {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.mapa-contenedor {
    width: 100%;
    background-color: transparent;
    border: none;
    border-radius: 12px;
    padding: 0;
    box-shadow: none;
}

.mapa-contenedor img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* ===== MEDIA QUERIES - TABLET (768px y más) ===== */
@media (min-width: 768px) {
    h1 {
        font-size: 28px;
        text-align: left;
    }

    /* Header */
    .imglogo {
        width: 5rem;
    }

    /* Filmix */
    .filmix-logo {
        height: 300px;
    }

    .filmix-contenedor {
        padding: 1.5rem;
        min-height: auto;
    }

    /* Sección principal */
    .seccion-principal {
        padding: 1.5rem 2rem;
    }

    .equipo-seccion,
    .facultad-seccion {
        padding: 0 2rem;
    }

    /* Integrantes */
    .contenedor-integrantes {
        flex-direction: column;
        gap: 1rem;
    }

    .caja-integrante {
        width: 100%;
        min-width: auto;
        max-width: none;
        flex-direction: column;
        text-align: center;
    }

    .foto-integrante {
        width: 100px;
        height: 100px;
        margin: 0 auto 1rem auto;
        border: 3px solid white;
    }

    .info-integrante h3 {
        font-size: 1.2rem;
    }

    .info-integrante p {
        font-size: 0.9rem;
    }

    .boton-ver {
        width: auto;
        max-width: 150px;
        font-size: 0.9rem;
    }

    /* Facultad */
    .facultad-detalle {
        flex-direction: column;
        gap: 1rem;
    }

    .facultad-info {
        min-width: 350px;
        max-width: 450px;
        margin: 0 auto 1rem auto;
        padding: 1.5rem 2rem;
        align-items: flex-start;
    }

    .facultad-detalle img {
        width: 100px;
        height: 100px;
    }

    .facultad-detalle img.logo-dgpc {
        width: 80px;
        height: 80px;
    }

    .facultad-detalle p {
        font-size: 0.9rem;
    }

    /* CTA */
    .cta-cierre {
        padding: 3rem 1.5rem;
    }

    .cta-cierre h2 {
        font-size: 1.6rem;
    }

    .cta-cierre p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-navegacion {
        padding: 0 2rem;
    }

    footer p {
        padding: 0 2rem;
    }

    .botones-proyecto {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .boton-proyecto {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }

    .boton-proyecto .icono {
        font-size: 1.3rem;
    }

    /* Video */
    .video-seccion {
        align-items: center;
        padding: 0 2rem;
    }

    .video-contenedor {
        max-width: 800px;
        margin: 0 auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    #video-title {
        text-align: center;
    }

    #asamblea-title {
        text-align: center;
    }

    /* Mapa */
    .mapa-seccion {
        align-items: center;
        padding: 0 2rem;
    }

    .mapa-contenedor {
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    /* Plan */
    .plan-contenido {
        padding: 2rem;
    }

    .plan-contenido h1 {
        font-size: 24px;
    }

    .plan-contenido h2 {
        font-size: 1.1rem;
    }

    .plan-contenido p {
        font-size: 0.9rem;
    }

    .plan-imagenes {
        padding: 0 2rem 2rem 2rem;
    }
}

/* ===== MEDIA QUERIES - DESKTOP (1024px y más) ===== */
@media (min-width: 1024px) {
    h1 {
        font-size: 36px;
        text-align: left;
    }

    .seccion-principal h1 {
        margin-top: 0;
    }

    /* Header */
    header {
        flex-direction: row;
        padding: 1.5rem 2rem;
    }

    .logo-y-menu {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .imglogo {
        margin: 0;
        padding-bottom: 0;
        width: 4rem;
    }

    .contenedor-de-la-lista {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
    }

    .lista {
        flex-direction: row;
        flex-wrap: nowrap;
        width: auto;
    }

    .lista-objetos {
        font-size: 18px;
        padding: 0.5rem 1.5rem;
    }

    /* Filmix */
    .filmix-logo {
        height: 500px;
    }

    .filmix-contenedor {
        padding: 2rem 2rem 0.5rem 2rem;
        min-height: auto;
    }

    /* Sección principal */
    .seccion-principal {
        padding: 1.5rem 3rem 1rem 3rem;
        display: grid;
        align-items: stretch;
        gap: 0.5rem;
        margin-bottom: 0;
    }

    .seccion-principal h1 {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .seccion-principal p {
        margin-bottom: 0.5rem;
    }

    .equipo-seccion,
    .facultad-seccion {
        padding: 0 3rem;
        align-items: flex-start;
    }

    .equipo-seccion {
        margin-top: 1rem;
        margin-bottom: 2.5rem;
    }

    .titulo-equipo,
    .titulo-facultad {
        text-align: left;
    }

    /* Integrantes */
    .contenedor-integrantes {
        justify-content: flex-start;
        gap: 2rem;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: stretch;
        width: 100%;
    }

    .caja-integrante {
        flex: 1 1 50%;
        min-width: 0;
        width: calc(50% - 1rem);
        max-width: calc(50% - 1rem);
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        align-self: stretch;
    }

    .foto-integrante {
        width: 120px;
        height: 120px;
        margin-right: 1.5rem;
        margin-bottom: 0;
        flex-shrink: 0;
        border: 3px solid white;
    }

    .info-integrante {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex: 1;
        min-height: 100%;
    }

    .info-integrante h3 {
        font-size: 1.4rem;
    }

    .info-integrante p {
        font-size: 1rem;
        flex: 1;
    }

    .boton-ver {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        max-width: none;
        align-self: flex-start;
        margin-top: auto;
    }

    /* Facultad */
    .facultad-detalle {
        justify-content: flex-start;
        gap: 2rem;
        padding: 0;
        flex-wrap: nowrap;
        flex-direction: row;
        align-items: stretch;
        width: 100%;
    }

    .facultad-info {
        flex: 1 1 33.333%;
        width: calc(33.333% - 1.333rem);
        min-width: 0;
        max-width: calc(33.333% - 1.333rem);
        margin-bottom: 1rem;
        padding: 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-self: stretch;
    }

    .facultad-info:hover {
        transform: scale(1.05);
    }

    .facultad-detalle img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .facultad-detalle img.logo-dgpc {
        width: 80px;
        height: 80px;
    }

    .facultad-detalle p {
        font-size: 1rem;
        flex: 1;
    }

    /* CTA */
    .cta-cierre {
        padding: 2rem 3rem 4rem 3rem;
    }

    .cta-cierre h2 {
        font-size: 1.75rem;
    }

    .cta-cierre p {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-navegacion {
        padding: 0 3rem;
    }

    footer p {
        padding: 0 3rem;
    }

    .botones-proyecto {
        flex-direction: row;
        gap: 1.5rem;
    }

    .boton-proyecto {
        width: auto;
        max-width: none;
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

    .boton-proyecto .icono {
        font-size: 1.5rem;
    }

    /* Video */
    .video-seccion {
        align-items: flex-start;
        padding: 0 3rem;
    }

    .video-contenedor {
        background-color: white;
        border: 3px solid black;
        padding: 2rem;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
        max-width: 100%;
        width: 100%;
        margin-top: 1rem;
    }

    #video-title {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    #asamblea-title {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    /* Mapa */
    .mapa-seccion {
        align-items: flex-start;
        padding: 0 3rem;
    }

    .mapa-contenedor {
        background-color: white;
        border: 3px solid black;
        padding: 2rem;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    }

    body .plan-contenido {
        padding: 3rem 3rem 2rem 3rem;
    }

    body .plan-contenido h1 {
        text-align: left;
        font-size: 36px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    body .plan-contenido h2 {
        text-align: left;
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    body .plan-contenido p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
        text-align: left;
    }

    body .plan-imagenes {
        padding: 0 3rem 2rem 3rem;
    }

    .contenedor-doble {
        flex-direction: row;
        gap: 2rem;
    }

    .imagen-plan {
        background-color: white;
        border: 3px solid black;
        padding: 1.5rem;
        box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    }

    /* Estrellas Desktop: 4 estrellas */
    .estrella {
        width: 100px;
        height: 100px;
    }

    .estrella-1 {
        display: block;
        left: 10%;
        top: 20%;
    }

    .estrella-2 {
        display: block;
        left: 20%;
        top: 20%;
    }

    .estrella-3 {
        right: 20%;
        top: 20%;
    }

    .estrella-4 {
        display: block;
        right: 10%;
        top: 20%;
    }
}
