/* =================== VINILOS & LIBROS =================== */
.vinilos, .libros {
    background: var(--off-white);
    min-height: 100vh;
}

/* =================== CAFÉ =================== */
.cafe {
    background: var(--blue);
    min-height: 100vh;
    position: relative;
}

.cafe-bg {
    position: fixed;
    top: 50%; right: -10%;
    transform: translateY(-50%);
    width: min(800px, 80vw);
    height: min(800px, 80vw);
    opacity: 0.02;
    pointer-events: none;
    max-width: 100vw;
}

.bg-circle {
    width: 100%;
    height: 100%;
    animation: rotate 120s linear infinite;
}

.cafe-content {
    padding: 3.2rem 2rem 5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cafe-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--white);
    margin-bottom: 3.2rem;
}

.cafe-text { max-width: 700px; margin-bottom: 2.5rem; }

.cafe-text p {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.95;
}

.cafe-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: 3.2rem;
}

/* =================== CAFÉ MENU =================== */
.cafe-menu {
    margin-top: 4rem;
    max-width: 700px;
}

.cafe-menu-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1;
}

.menu-category {
    margin-bottom: 2.5rem;
}

.menu-cat-label {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--white);
    opacity: 0.45;
    margin-bottom: 1.1rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =================== CONTACTO =================== */
.contacto {
    background: var(--blue);
    min-height: 100vh;
}

.contacto-content {
    padding: 3.2rem 2rem 5rem;
    max-width: 820px;
    margin: 0 auto;
}

.contacto-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 2rem;
}

.contacto-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    margin-bottom: 2rem;
}

.contacto-section h2 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
}

.contacto-section p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
}

.contacto-action { text-align: left; }

/* =================== RESPONSIVE PAGES =================== */
@media (max-width: 900px) {
    .contacto-info { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .cafe-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .contacto-content { padding: 2.5rem 1.5rem 3.5rem; }
}
