/* El resto de tu CSS permanece igual */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* GLOBAL - FUENTE GEORGIA */
body, p, h1, h2, h3, a, span, li, button, input, .menu a, .btn-magico, .contenido-mensaje p, .item-frase p, .card-producto h3, .desc-producto, .desc-precio, .btn-producto, .titulo-aventura, .newsletter h2, .social-item p {
    font-family: Georgia, "Times New Roman", Times, serif;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: Georgia, "Times New Roman", Times, serif;
    padding-top: 90px;
}

/* HEADER */
header {
    height: 100vh;
    background-image: url("/recursos/cielo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: -180px;
    padding-top: 180px;
    position: relative;
    overflow: visible;
}

/* MENÚ - TRANSPARENTE CON BLUR EN ESCRITORIO (BASE) */
.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1000;
}

/* capa inferior con efecto difuminado */
.menu::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.15), rgba(255,255,255,0));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

.menu a {
    text-decoration: none;
    color: #064269;
    font-weight: 600;
    font-size: 29px;
    transition: color 0.3s ease;
}

.menu a:hover {
    text-decoration: none;
    color: #1E90FF; /* Azul brillante */
}


/* LOGO */
.logo {
    width: 450px;
    height: auto;
    margin-top: -20px;
}

.links {
    display: flex;
    gap: 60px;
    margin-left: 360px;
}

/* TEXTO PRINCIPAL */
.texto-header {
    position: absolute;
    left: 130px;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
}

.texto-header h1 {
    font-size: 100px;
    line-height: 1.2;
    color: #064269;
}

.texto-header span {
    color: #E40E1A;
    font-size: 138px;
    font-weight: bold;
}

.sociales {
    display: flex;
    gap: 15px;
}

.icono {
    width: 60px;
    height: 60px;
    fill: #E40E1A;
    cursor: pointer;
}

#ingles {
    width: 60px;
    height: 60px;
    fill: #00406A;
    cursor: pointer;
}

.icono:hover {
    fill: #E40E1A;
}

.Angel {
    position: absolute;
    bottom: 27%;
    left: 50%;
    transform: translateX(-40%);
    width: 35%;
    z-index: 100;
    
}

.imagen-angel {
    width: 100%;
    height: auto;
    display: block;
}


.angel-animado {
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}
.Angelitos {
    position: absolute;
    bottom: 45%;
    left: 50%;
    transform: translateX(120%);
    width: 20%;
    z-index: 100;
    
}


.angelitos-flotantes {
    animation: flotarAngelitos 3s ease-in-out infinite;
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes flotarAngelitos {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.imagen-angelitos {
    width: 100%;
    height: auto;
    display: block;
}

.sello {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(210%);
    width: 13%;
    z-index: 100;
}

.nubes-derecha {
    position: absolute;
    top: 37%;
    left: 40%;
    width: 100%;
    z-index: 100;
}

.imagen-sello {
    width: 100%;
    height: auto;
    display: block;
}

.boton-angel {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
}

.btn-magico {
    display: inline-block;
    padding: 18px 90px;
    font-size: 38px;
    font-weight: bold;
    color: white;
    background-color: #E40E1A;
    text-decoration: none;
    border-radius: 40px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-magico:hover {
    background-color: #ff3b3b;
    transform: scale(1.05);
}

.mensaje {
    position: relative;
    background-color: white;
    padding: 80px 120px 120px;
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-rows: auto auto;
    column-gap: 80px;
    row-gap: 40px;
    overflow: hidden;
}

/* FRANJA AZUL SUPERIOR */
.mensaje::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    background-color: #dff3fb;
    z-index: 0;
}

/* CONTENIDO ENCIMA DEL AZUL */
.contenido-mensaje,
.imagen-mensaje {
    position: relative;
    z-index: 1;
}

/* CONTENIDO TEXTO */
.contenido-mensaje {
    grid-column: 1 / 2;
    color: #0b2c4a;
    margin-left: 5%;
}

/* TITULO SUPERIOR ANCHO Y CENTRADO */
.contenido-mensaje h2 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 50px;
    margin-bottom: 50px;
}

/* TEXTO */
.contenido-mensaje p {
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
    margin-left: 60px;
}

/* IMAGEN */
.imagen-mensaje {
    grid-column: 2/ 3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.imagen-mensaje-angel {
    width: 100%;
    max-width: 550px;
    border: 4px solid #6ec1ff;
    margin-right: 10%;
    border-radius: 12px;
    background-color: white;
}

#boton-adoptar {
    left: 110px;
    transform: translateX(0);
    bottom: 20px;
    position: relative;
    z-index: 5;
}


.contenedor-compra {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.opciones-idioma {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.opciones-idioma.activo {
    display: flex;
}

.btn-idioma {
    background-color: #ACEFF8;
    color: #0b2c4a;
    padding: 8px 70px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    font-weight: bold;
}

.btn-idioma:hover {
    background-color: #0b5c94;
}
#boton-adoptar .btn-magico {
    font-size: 28px;
    padding: 14px 60px;
    z-index: 1000;
}

.nubes-izquierda {
    position: absolute;
    bottom: -550px;
    right: 22%;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.frases {
    background-color: #FEFBF4;
    padding: 120px 100px;
    text-align: center;
}

/* Título */
.frases h2 {
    font-size: 60px;
    color: #1f2a44;
    margin-top: 20px;
    line-height: .8;
}

/* GRID */
.grid-frases {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 90px 0px;
    justify-items: center;
}

/* TARJETAS */
.item-frase {
    max-width: 470px;
}

/* IMÁGENES MÁS GRANDES Y ALARGADAS */
.img-placeholder {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 30px;
}

/* TEXTO */
.item-frase p {
    font-size: 40px;
    line-height: 1.5;
    color: #000000;
}

/* ===== FILA SUPERIOR (3 CENTRADAS) ===== */
.grid-frases .item-frase:nth-child(1) {
    grid-column: 1 / 3;
}

.grid-frases .item-frase:nth-child(2) {
    grid-column: 3 / 5;
}

.grid-frases .item-frase:nth-child(3) {
    grid-column: 5 / 7;
}

/* ===== FILA INFERIOR (2 MÁS JUNTAS Y CENTRADAS) ===== */
.grid-frases .item-frase:nth-child(4) {
    grid-column: 2 / 4;
}

.grid-frases .item-frase:nth-child(5) {
    grid-column: 4 / 6;
}

.imagen-borde {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
    margin-bottom: 60px;
}

.imagen-angelvo {
    width: 50%;
    display: block;
    margin: 0 auto;
    align-items: center;
     animation: float 2.5s ease-in-out infinite;
}

.Productos-tienda {
    background-color: #ACEFF8;
    padding: 120px 0;
    text-align: center;
}

/* RECTÁNGULO ROJO SUPERIOR */
.rectangulo {
    width: 100%;
    background-color: #E40E1A;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5%;
}

.rectangulo h2 {
    color: white;
    font-size: 70px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
}

/* ================= TIENDA ================= */
.contenido-productos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1800px;
    margin: 0 auto;
}

.card-producto {
    background-color: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.card-producto img {
    width: 100%;
    max-width: 320px;
    height: 320px;
    object-fit: contain;
    display: block;
    margin: 0 auto 30px auto;
}

.card-producto h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2a44;
}

.desc-producto {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #444;
    text-align: left;
}

.desc-precio {
    font-size: 22px;
    font-weight: bold;
    color: #d10000;
    margin-bottom: 30px;
    text-align: left;
}

.btn-producto {
        border: none;
    outline: none;
    display: inline-block;
    padding: 15px 50px;
    background-color: #E40E1A;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-size: 20px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-producto:hover {
    background-color: #ff3b3b;
    transform: scale(1.05);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
    100% { transform: translateY(0); }
}

.pluma {
    margin-top: 5%;
    animation: float 3s ease-in-out infinite;
}


.imagenem {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
    background: #ffffff;
}

/* TEXTO ARRIBA */
.titulo-aventura {
    position: relative;
    z-index: 3;
    text-align: center;
    font-size: 50px;
    color: #123a5c;
    margin-top: 160px;
    line-height: 1.3;
}

/* FONDO CIELO */
.fondo {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 450px;
    z-index: 1;
}

.fondo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FOTO ENCIMA */
.fotoN {
    position: absolute;
    top: 300px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.imagen-foton {
    width: 610px;
    height: auto;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background-color: #ACEFF8;
    padding: 100px 120px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.footer-contenedor {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

/* MUNDO IZQUIERDA */
.mundo {
    width: 50%;
}

.imagen-mundo {
    width: 100%;
    max-width: 900px;
    margin-top: -10%;
}

/* COLUMNA DERECHA */
.columna-derecha {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 15%;
}

/* NEWSLETTER */
.newsletter h2 {
    font-size: 58px;
    color: #0b2c4a;
    margin-bottom: 30px;
    text-align: center;
}

.newsletter form {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.newsletter input {
    padding: 25px 50px;
    border-radius: 30px;
    border: none;
    width: 500px;
    font-size: 20px;
}

input {
    font-size: 20px;
}

.newsletter .btn {
    background-color: #e10600;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    font-size: 20px;
}

/* REDES VERTICALES */
.sociales-footer {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 50px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-item p {
    font-size: 22px;
    color: #0b2c4a;
    font-weight: 600;
}

#azul {
    fill: #00406A;
}

/* LOGO */
.logo-footer-contenedor {
    position: absolute;
    right: 40px;
    bottom: 40px;
}

.logo-footer {
    width: 660px;
}

.social-item a {
    text-decoration: none;
}

/* ===== MEDIA QUERY PARA 1080p ===== */
@media (min-width: 1070px) and (max-width: 1920px) {
    /* HEADER */
    header {
        height: 100vh;
        margin-top: -120px;
        padding-top: 120px;
    }

    .menu {
        padding: 0px 40px;
    }

    .logo {
        width: 300px;
        margin-top: -10px;
    }

    .links {
        gap: 40px;
        margin-left: 200px;
    }

    .menu a {
        font-size: 20px;
    }

    .texto-header {
        left: 80px;
    }

    .texto-header h1 {
        font-size: 70px;
    }

    .texto-header span {
        font-size: 90px;
    }

    .icono, #ingles {
        width: 45px;
        height: 45px;
    }

    .Angel {
        bottom: 25%;
        left: 50%;
        transform: translateX(-45%);
        width: 34%;
    }

    .Angelitos {
       left: 55%;
        bottom: 50%;
        transform: translateX(160%);
        width: 16%;
    }

    .nubes-derecha {
        position: absolute;
        top: 8%;
        left: 29%;
        width: 80%;
        z-index: 100;
    }

    .sello {
        bottom: 8%;
        transform: translateX(180%);
        width: 15%;
    }

    .boton-angel {
        bottom: 12%;
    }

    .btn-magico {
        padding: 15px 70px;
        font-size: 30px;
    }

    /* MENSAJE */
    .mensaje {
        padding: 60px 80px 100px;
        column-gap: 60px;
    }

    .contenido-mensaje h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contenido-mensaje p {
        font-size: 23px;
        margin-left: 40px;
    }

    .imagen-mensaje-angel {
        max-width: 450px;
    }

    #boton-adoptar .btn-magico {
        font-size: 24px;
        padding: 12px 50px;
    }

    .nubes-izquierda {
        position: absolute;
        top: 22%;
        width: 80%;
        z-index: 100;
    }

    /* FRASES */
    .frases {
        padding: 80px 60px;
    }

    .frases h2 {
        font-size: 48px;
    }

    .grid-frases {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 40px 20px;
        justify-items: center;
        max-width: 1400px;
        margin: 0 auto;
    }

    .item-frase {
        max-width: 320px;
        width: 100%;
    }

    .img-placeholder {
        width: 100%;
        height: 380px;
        object-fit: cover;
        border-radius: 20px;
        margin-bottom: 20px;
    }

    .item-frase p {
        font-size: 24px;
        line-height: 1.4;
    }

    .grid-frases .item-frase:nth-child(1) {
        grid-column: 1 / 3;
    }

    .grid-frases .item-frase:nth-child(2) {
        grid-column: 3 / 5;
    }

    .grid-frases .item-frase:nth-child(3) {
        grid-column: 5 / 7;
    }

    .grid-frases .item-frase:nth-child(4) {
        grid-column: 2 / 4;
    }

    .grid-frases .item-frase:nth-child(5) {
        grid-column: 4 / 6;
    }

    .imagen-borde {
        max-width: 450px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .imagen-angelvo {
        width: 40%;
    }

    /* TIENDA */
    .Productos-tienda {
        padding: 80px 0;
    }

    .rectangulo {
        padding: 30px 0;
        margin-bottom: 4%;
    }

    .rectangulo h2 {
        font-size: 55px;
    }

    .contenido-productos {
        gap: 40px;
        max-width: 1400px;
        padding: 0 30px;
    }

    .card-producto {
        padding: 40px 30px;
    }

    .card-producto img {
        max-width: 250px;
        height: 250px;
        margin-bottom: 20px;
    }

    .card-producto h3 {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .desc-producto, .desc-precio {
        font-size: 18px;
    }

    .btn-producto {
        padding: 12px 40px;
        font-size: 18px;
    }

    /* AVENTURA */
    .imagenem {
        height: 800px;
    }

    .pluma {
        margin-top: 3%;
        width: 100%;
    }

    .pluma img {
        width: 80%;
        max-width: 600px;
        display: block;
        margin: 0 auto;
    }

    .titulo-aventura {
        font-size: 42px;
        margin-top: 120px;
    }

    .fondo {
        top: 100px;
        width: 65%;
        height: 380px;
    }

    .fotoN {
        top: 250px;
    }

    .imagen-foton {
        width: 500px;
    }

    /* FOOTER - AJUSTES PARA QUE SE VEA COMO EN 67% */
    footer {
        padding: 20px 60px 40px 60px;
        align-items: center;
        min-height: auto;
    }

    .footer-contenedor {
        align-items: center;
    }

    .mundo {
        width: 50%;
    }

    .imagen-mundo {
        max-width: 560px;
        margin-top: 0;
    }

    .columna-derecha {
        width: 60%;
        margin-right: 2%;
    }

    .newsletter h2 {
        font-size: 37px;
        margin-bottom: 16px;
        text-align: left;
        white-space: nowrap;
    }

    .newsletter form {
        gap: 10px;
        margin-bottom: 40px;
    }

    .newsletter input {
        padding: 18px 20px;
        width: 280px;
        font-size: 14px;
    }

    .newsletter .btn {
        padding: 12px 20px;
        font-size: 14px;
        white-space: nowrap;
    }

    .sociales-footer {
        gap: 30px;
        margin-bottom: 110px;
    }

    .social-item {
        gap: 10px;
    }

    .social-item p {
        font-size: 20px;
        margin: 0;
    }

    .social-item svg {
        width: 28px;
        height: 28px;
    }

    .logo-footer-contenedor {
        right: 30px;
        bottom: 30px;
    }

    .logo-footer {
        width: 480px;
    }
}

/* ===== MEDIA QUERY PARA TABLETS (iPads y tablets) ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    
    /* HEADER - Ajustes generales */
    header {
        margin-top: -100px;
        padding-top: 100px;
    }

    /* MENÚ - Versión compacta para tablet */
    .menu {
        padding: 10px 30px;
    }

    .logo {
        width: 220px;
        margin-top: -5px;
    }

    .links {
        gap: 25px;
        margin-left: 50px;
    }

    .menu a {
        font-size: 18px;
    }

    .sociales .icono {
        width: 35px;
        height: 35px;
    }

    /* TEXTO HEADER */
    .texto-header {
        left: 50px;
    }

    .texto-header h1 {
        font-size: 55px;
    }

    .texto-header span {
        font-size: 70px;
    }

    /* ÁNGELES Y ELEMENTOS DECORATIVOS */
    .Angel {
        width: 30%;
        bottom: 25%;
    }

    .Angelitos {
        width: 15%;
        bottom: 45%;
        transform: translateX(140%);
    }

    .sello {
        width: 12%;
        transform: translateX(200%);
    }

    .nubes-derecha {
        top: 15%;
        left: 35%;
        width: 70%;
    }

    .boton-angel {
        bottom: 10%;
    }

    .btn-magico {
        padding: 12px 50px;
        font-size: 24px;
    }

    /* SECCIÓN MENSAJE */
    .mensaje {
        padding: 50px 60px 80px;
        column-gap: 40px;
    }

    .contenido-mensaje h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contenido-mensaje p {
        font-size: 20px;
        margin-left: 30px;
    }

    .imagen-mensaje-angel {
        max-width: 380px;
    }

    #boton-adoptar .btn-magico {
        font-size: 20px;
        padding: 10px 40px;
    }

    /* SECCIÓN FRASES */
    .frases {
        padding: 60px 40px;
    }

    .frases h2 {
        font-size: 42px;
    }

    .grid-frases {
        gap: 30px 15px;
        max-width: 900px;
    }

    .item-frase {
        max-width: 280px;
    }

    .img-placeholder {
        height: 320px;
    }

    .item-frase p {
        font-size: 20px;
    }

    .imagen-borde {
        max-width: 350px;
    }

    .imagen-angelvo {
        width: 45%;
    }

    /* SECCIÓN TIENDA */
    .Productos-tienda {
        padding: 60px 0;
    }

    .rectangulo h2 {
        font-size: 45px;
    }

    .contenido-productos {
        gap: 25px;
        padding: 0 30px;
        max-width: 900px;
    }

    .card-producto {
        padding: 30px 20px;
    }

    .card-producto img {
        max-width: 180px;
        height: 180px;
    }

    .card-producto h3 {
        font-size: 22px;
    }

    .desc-producto, .desc-precio {
        font-size: 16px;
    }

    .btn-producto {
        padding: 10px 30px;
        font-size: 16px;
    }

    /* SECCIÓN AVENTURA */
    .imagenem {
        height: 700px;
    }

    .titulo-aventura {
        font-size: 36px;
        margin-top: 100px;
    }

    .fondo {
        top: 80px;
        width: 70%;
        height: 320px;
    }

    .fotoN {
        top: 200px;
    }

    .imagen-foton {
        width: 420px;
    }

    .pluma img {
        max-width: 450px;
    }

    /* FOOTER */
    footer {
        padding: 50px 60px;
    }

    .footer-contenedor {
        gap: 30px;
    }

    .imagen-mundo {
        max-width: 450px;
    }

    .newsletter h2 {
        font-size: 38px;
    }

    .newsletter input {
        padding: 18px 30px;
        width: 320px;
        font-size: 16px;
    }

    .newsletter .btn {
        padding: 12px 30px;
        font-size: 16px;
    }

    .social-item p {
        font-size: 18px;
    }

    .social-item svg {
        width: 35px;
        height: 35px;
    }

    .logo-footer {
        width: 380px;
    }
}

/* ===== MEDIA QUERY PARA TABLETS PEQUEÑAS (768px - 820px) ===== */
@media (min-width: 768px) and (max-width: 820px) {
    /* Ajustes específicos para iPad en vertical */
    
    .menu {
        padding: 8px 20px;
    }

    .logo {
        width: 180px;
    }

    .links {
        gap: 15px;
        margin-left: 20px;
    }

    .menu a {
        font-size: 16px;
    }

    .texto-header {
        left: 30px;
    }

    .texto-header h1 {
        font-size: 45px;
    }

    .texto-header span {
        font-size: 55px;
    }

    .Angel {
        width: 28%;
    }
}

/* ===== RESPONSIVE PARA CELULARES ===== */
/* Estilos para el botón hamburguesa (solo visible en móvil) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background-color: #064269;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Ajustes del menú para móvil */
@media (max-width: 768px) {
    /* Mostrar hamburguesa */
    .hamburger {
        display: flex;
    }

    /* Reestructuración del menú */
    .menu {
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 30px 15px !important;
        background: #ACEFF8;
        backdrop-filter: none;
    }

    .menu::after {
        display: none;
    }

    /* Primera fila: logo centrado */
    .menu-logo {
        text-align: center;
        margin-bottom: 10px;
    }

    .logo {
        width: 200px;
        margin: 0 auto;
    }

    /* Segunda fila: hamburguesa a la izquierda, sociales a la derecha */
    .menu-controls {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .sociales {
        gap: 12px;
        margin: 0;
    }

    .sociales .icono {
        width: 32px;
        height: 32px;
    }

    /* Enlaces ocultos por defecto */
    .links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin: 15px 0 5px;
        gap: 12px;
        text-align: center;
    }

    .links a {
        font-size: 18px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    /* Clase para mostrar el menú (se activa con JS) */
    .links.show {
        display: flex;
    }

    /* HEADER: dejamos espacio para el menú fijo */
    header {
        top: 0;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    /* TEXTO HEADER: bajamos para que no quede tapado */
    .texto-header {
        left: 20px;
        right: 20px;
        top: 46%;
        text-align: center;
        z-index: 102;
    }

    .texto-header h1 {
        font-size: 30px;
    }

    .texto-header span {
        font-size: 40px;
        display: block;
    }

    .texto-header br {
        display: none;
    }

    .sociales {
        justify-content: center;
        margin-top: 10px;
    }

    /* ÁNGEL PRINCIPAL: ajustamos posición */
    .Angel {
        display: block !important;
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
        width: 35%;
        z-index: 100;
    }

    /* OCULTAMOS OTROS ELEMENTOS DECORATIVOS */
    .Angelitos, .sello, .nubes-derecha, .nubes-izquierda {
        display: none;
    }

    .boton-angel {
        bottom: 5%;
        z-index: 103;
    }

    .btn-magico {
        padding: 8px 25px;
        font-size: 20px;
    }

    /* RESTO DE SECCIONES */
    .mensaje {
        padding: 40px 20px 60px;
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mensaje::before {
        height: 60%;
    }

    .contenido-mensaje {
        grid-column: 1 / -1;
        margin-left: 0;
    }

    .contenido-mensaje h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contenido-mensaje p {
        font-size: 20px;
        margin-left: 0;
        text-align: center;
    }

    .imagen-mensaje {
        grid-column: 1 / -1;
    }

    .imagen-mensaje-angel {
        max-width: 100%;
        margin-right: 0;
    }

    #boton-adoptar {
        left: 0;
        text-align: center;
    }

    #boton-adoptar .btn-magico {
        font-size: 20px;
        padding: 12px 40px;
    }

    .frases {
        padding: 60px 20px;
    }

    .frases h2 {
        font-size: 36px;
        line-height: 1.2;
    }

    .grid-frases {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-frases .item-frase:nth-child(n) {
        grid-column: 1 / -1;
    }

    .item-frase {
        max-width: 100%;
    }

    .img-placeholder {
        height: 400px;
        border-radius: 15px;
        margin-bottom: 15px;
    }

    .item-frase p {
        font-size: 24px;
    }

    .imagen-borde {
        max-width: 100%;
        margin: 20px 0;
    }

    .imagen-angelvo {
        width: 80%;
    }

    .Productos-tienda {
        padding: 60px 0;
    }

    .rectangulo {
        padding: 20px 0;
        margin-bottom: 30px;
    }

    .rectangulo h2 {
        font-size: 40px;
    }

    .contenido-productos {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .card-producto {
        padding: 30px 20px;
    }

    .card-producto img {
        max-width: 200px;
        height: 200px;
        margin-bottom: 15px;
    }

    .card-producto h3 {
        font-size: 24px;
    }

    .desc-producto, .desc-precio {
        font-size: 18px;
    }

    .btn-producto {
        padding: 12px 30px;
        font-size: 16px;
    }

    .imagenem {
        height: 600px;
    }

    .pluma {
        margin-top: 5%;
    }

    .pluma img {
        width: 90%;
        max-width: 400px;
    }

    .titulo-aventura {
        font-size: 28px;
        margin-top: 80px;
        padding: 0 20px;
    }

    .fondo {
        top: 60px;
        width: 90%;
        height: 250px;
    }

    .fotoN {
        top: 150px;
    }

    .imagen-foton {
        width: 300px;
    }

    footer {
        padding: 40px 20px;
        flex-direction: column;
    }

    .footer-contenedor {
        flex-direction: column;
        gap: 40px;
    }

    .mundo {
        width: 100%;
    }

    .imagen-mundo {
        max-width: 100%;
        margin-top: 0;
    }

    .columna-derecha {
        width: 100%;
        margin-right: 0;
    }

    .newsletter h2 {
        font-size: 32px;
        text-align: center;
    }

    .newsletter form {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter input {
        width: 100%;
        padding: 15px 25px;
        font-size: 16px;
    }

    .newsletter .btn {
        width: 100%;
        padding: 15px 25px;
        font-size: 18px;
    }

    .sociales-footer {
        align-items: center;
        margin-bottom: 30px;
    }

    .social-item {
        justify-content: center;
    }

    .social-item p {
        font-size: 18px;
    }

    .social-item svg {
        width: 35px;
        height: 35px;
    }

    .logo-footer-contenedor {
        position: static;
        text-align: center;
        margin-top: 20px;
    }

    .logo-footer {
        width: 250px;
    }
}

/* ===== MEDIA QUERY PARA MÓVILES PEQUEÑOS (max-width: 480px) ===== */
@media (max-width: 480px) {
    
    /* HEADER */
    header {
        margin-top: -60px;
        padding-top: 60px;
    }

    .texto-header {
        top: 35%;
    }

    .texto-header h1 {
        font-size: 24px;
    }

    .texto-header span {
        font-size: 32px;
    }

    .Angel {
        width: 45%;
        bottom: 20%;
    }

    .btn-magico {
        padding: 6px 20px;
        font-size: 16px;
    }

    /* MENSAJE */
    .mensaje {
        padding: 30px 15px 40px;
    }

    .contenido-mensaje h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contenido-mensaje p {
        font-size: 16px;
        line-height: 1.3;
    }

    #boton-adoptar .btn-magico {
        font-size: 16px;
        padding: 8px 25px;
    }

    /* FRASES */
    .frases {
        padding: 40px 15px;
    }

    .frases h2 {
        font-size: 28px;
    }

    .img-placeholder {
        height: 250px;
    }

    .item-frase p {
        font-size: 18px;
    }

    /* TIENDA */
    .Productos-tienda {
        padding: 40px 0;
    }

    .rectangulo h2 {
        font-size: 28px;
        padding: 0 10px;
    }

    .contenido-productos {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .card-producto {
        padding: 20px 15px;
    }

    .card-producto img {
        max-width: 140px;
        height: 140px;
    }

    .card-producto h3 {
        font-size: 18px;
    }

    .desc-producto, .desc-precio {
        font-size: 14px;
    }

    .btn-producto {
        padding: 8px 20px;
        font-size: 14px;
    }

    /* AVENTURA */
    .imagenem {
        height: 500px;
    }

    .titulo-aventura {
        font-size: 20px;
        margin-top: 60px;
    }

    .fondo {
        top: 40px;
        height: 180px;
    }

    .fotoN {
        top: 100px;
    }

    .imagen-foton {
        width: 220px;
    }

    .pluma img {
        max-width: 250px;
    }

    /* FOOTER */
    footer {
        padding: 30px 15px;
    }

    .imagen-mundo {
        max-width: 200px;
    }

    .newsletter h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .newsletter input {
        padding: 10px 15px;
        font-size: 14px;
    }

    .newsletter .btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    .social-item p {
        font-size: 14px;
    }

    .social-item svg {
        width: 25px;
        height: 25px;
    }

    .logo-footer {
        width: 180px;
    }
}

/* ===== MEDIA QUERY PARA PANTALLAS MUY PEQUEÑAS (max-width: 360px) ===== */
@media (max-width: 360px) {
    .texto-header h1 {
        font-size: 20px;
    }

    .texto-header span {
        font-size: 28px;
    }

    .Angel {
        width: 50%;
        bottom: 18%;
    }

    .btn-magico {
        padding: 5px 15px;
        font-size: 14px;
    }

    .contenido-mensaje h2 {
        font-size: 20px;
    }

    .contenido-mensaje p {
        font-size: 14px;
    }

    .frases h2 {
        font-size: 24px;
    }

    .item-frase p {
        font-size: 16px;
    }

    .img-placeholder {
        height: 200px;
    }

    .newsletter h2 {
        font-size: 20px;
    }

    .newsletter input {
        padding: 8px 12px;
        font-size: 12px;
    }

    .newsletter .btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .logo-footer {
        width: 150px;
    }
}