/* AJUSTES GENERALES */
:root {
    --rojo-shyy: #6d1514;
    --rosa-suave: #fef5f2;
    --rosa-medio: #f3d7e9;
    --lavanda: #89a1d3; /* ← dejé el tuyo exacto */
    --negro: #1a1a1a;
    --blanco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body,html {
    background-color: #0f0f0f;
    overflow-x: hidden;
}

/* HEADER */
.shyy-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0f0f0f;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    color:#fef5f2;
}

/* MENU DESKTOP */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    font-size: 15px;
    color: #fef5f2;
    text-decoration: none;
}

.menu a:hover {
    color: #f3d7e9;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--lavanda);
    transition: .3s ease;
    border-radius: 2px;
}

/* ANIMACIÓN HAMBURGUESA */
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* CONTENEDOR */
.container {
    max-width: 900px;
    margin: 100px auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #222;
}

h1, h2 {
    color: #fff;
    margin-top: 25px;
}

p, li {
    color: #cfcfcf;
}

ul {
    margin-left: 40px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background: #1a1a1a;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 10px;
    border: 1px solid #333;
    color: #ccc;
}

/* FOOTER */
.footer {
    background: #6d1514;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 40px 0;
    color: #ffffff;
}

.footer-grid {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-col h3 {
    font-size: 34px;
    margin-bottom: 15px;
}

.footer-col h3 a {
    color: inherit;
    font-size: inherit;
}

.footer-col a {
    color: #ffffff;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input {
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    color: #ffffff;
    background: transparent;
}

.footer-btn {
    padding: 12px;
    background: #ccc;
    color: #ffffff;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-btn:hover {
    background: #89a0d3;
    transform: scale(1.05);
}

/* ===============================
         RESPONSIVE UNIFICADO
================================ */

/* ----- MENÚ EN PC ----- */
.menu {
    display: flex;
    gap: 30px;
}

/* ----- MÓVIL (≤ 850px) ----- */
@media (max-width: 850px) {

    /* Mostrar hamburguesa */
    .hamburger {
        display: flex;
    }

    /* Menú lateral deslizándose */
    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--rosa-suave);
        padding: 60px 30px;
        flex-direction: column;
        gap: 25px;
        transition: 0.3s ease;
        z-index: 2000;
    }

    .menu.active {
        right: 0;
    }

    /* Estilo links dentro */
    .menu a {
        color: var(--negro);
        font-size: 18px;
        font-weight: 600;
    }

    /* Contenedores */
    .container {
        max-width: 90%;
        margin: 100px auto;
        padding: 22px;
    }

    /* Footer en una sola columna */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: start;
    }

    .footer-col h3,
    .footer-col a,
    .footer-form {
        text-align: left !important;
    }
}

/* ----- MÓVIL CHICO (≤ 480px) ----- */
@media (max-width: 480px) {

    .container {
        max-width: 92%;
        margin: 100px auto;
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
        justify-items: start;
    }

    .footer-col h3,
    .footer-col a,
    .footer-form {
        text-align: left !important;
    }
}

/* ----- ANIMACIÓN HAMBURGUESA → X ----- */
.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
