/* === ACADEMIA DE BELLEZA === */
.academia-belleza {
    background: linear-gradient(90deg, #fff8f3 60%, #f7d7c4 100%);
    border-radius: 18px;
    box-shadow: 0 4px 24px #1a237e22;
    margin-bottom: 2.5rem;
    padding: 2.5rem 1.5rem 2.5rem 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.academia-contenido {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.academia-foto img {
    width: 320px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px #d930a744;
    border: 4px solid #fff;
    background: #fff;
}
.academia-texto {
    flex: 1 1 320px;
    min-width: 260px;
}
.academia-titulo {
    color: #d930a7;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.academia-desc {
    color: #1a237e;
    font-size: 1.15rem;
    margin-bottom: 0;
}
.academia-cursos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.curso-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px #1a237e22;
    border: 2px solid #e7eaf6;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.curso-card h3 {
    font-size: 1.25rem;
    color: #d930a7;
    font-weight: bold;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
}
.curso-card p {
    color: #1a237e;
    font-size: 1.05rem;
    margin: 0;
}
.curso-card.barberia {
    border-top: 5px solid #1a237e;
}
.curso-card.coloracion {
    border-top: 5px solid #ffd700;
}
.curso-card.maquillaje {
    border-top: 5px solid #d930a7;
}
.curso-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #d930a744;
    border: 2px solid #d930a7;
}
@media (max-width: 900px) {
    .academia-contenido {
        flex-direction: column;
        align-items: flex-start;
    }
    .academia-foto img {
        width: 100%;
        max-width: 340px;
    }
}
/* FOOTER MODERNO */
.footer-mb {
    position: relative;
    background: linear-gradient(90deg, #1a237e 0%, #d930a7 100%);
    color: #fff;
    padding: 3.5rem 0 1.5rem 0;
    margin-top: 3rem;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    box-shadow: 0 -2px 24px #1a237e33;
}
.footer-mb-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 20% 0%, #fff 0%, #1a237e 60%, #d930a7 100%);
    opacity: 0.10;
    z-index: 0;
}
.footer-mb-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 2rem;
}
.footer-mb-col {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    min-width: 180px;
}
.footer-mb-col h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
    color: #fff;
    letter-spacing: 1px;
}
.footer-mb-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.footer-mb-col ul li, .footer-mb-col ul li a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
    opacity: 0.9;
    transition: color 0.2s, opacity 0.2s;
}
.footer-mb-col ul li a:hover {
    color: #ffd700;
    opacity: 1;
}
.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 8px #fff8;
    margin-bottom: 0.7rem;
}
.footer-marca {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
}
.footer-marca .marca {
    font-size: 1.1rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}
.footer-marca .eslogan {
    font-size: 0.95rem;
    color: #ffd6f6;
    opacity: 0.8;
}
.footer-social {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.5rem;
}
.footer-social-ico {
    font-size: 1.5rem;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.footer-social-ico:hover {
    background: #ffd70033;
    color: #ffd700;
}
.footer-contacto {
    gap: 0.2rem;
    font-size: 0.98rem;
    opacity: 0.9;
}
.footer-mb-col.suscribe-col {
    min-width: 240px;
}
.footer-suscribe {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.footer-suscribe input[type="email"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 24px;
    border: none;
    font-size: 1rem;
    outline: none;
    background: #fff;
    color: #1a237e;
    box-shadow: 0 2px 8px #fff4;
}
.footer-suscribe button {
    background: #ffd700;
    color: #d930a7;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px #ffd70044;
    transition: background 0.2s, color 0.2s;
}
.footer-suscribe button:hover {
    background: #fff;
    color: #d930a7;
}
.footer-mb-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin: 2.5rem auto 0 auto;
    max-width: 1300px;
    padding: 0 2rem;
    font-size: 1rem;
    color: #fff;
    opacity: 0.9;
    flex-wrap: wrap;
}
.footer-mb-pagos {
    display: flex;
    gap: 1.2rem;
    font-size: 2rem;
    align-items: center;
}
.footer-pago {
    opacity: 0.8;
}
@media (max-width: 900px) {
    .footer-mb-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .footer-mb-bottom {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }
}
/* SECCIÓN ¿POR QUÉ SOMOS MEJORES? */
.mejores-section {
    position: relative;
    padding: 0 0 4.5rem 0;
    margin-bottom: 2.5rem;
    z-index: 1;
}
.mejores-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: radial-gradient(circle at 20% 0%, #1a237e 0%, #d930a7 100%, #fff 100%);
    opacity: 0.13;
    z-index: 0;
}
.mejores-content {
    position: relative; 
    max-width: 1200px;
    margin: 0 auto;
    z-index: 1;
    padding: 2.5rem 1.5rem 0 1.5rem;
    background-image: url('../imagenes/fondo_belleza.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.mejores-titular {
    text-align: left;
    max-width: 700px;
    margin-bottom: 2.5rem;
}
.mejores-titular h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin: 0 0 0.7rem 0;
    letter-spacing: 1px;
}
.mejores-azul {
    color: #1a237e;
}
.mejores-rosa {
    color: #d930a7;
}
.mejores-titular p {
    color: #333;
    font-size: 1.1rem;
    margin: 0;
}
.mejores-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.mejores-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px #1a237e22;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    border: 2px solid #e7eaf6;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 260px;
}
.mejores-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px #d930a744;
    border: 2px solid #d930a7;
}
.mejores-icono {
    width: 54px;
    height: 54px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mejores-icono img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block; 
}
.mejores-card h3 {
    font-size: 1.1rem;
    color: #1a237e;
    font-weight: bold;
    margin: 0 0 0.7rem 0;
    letter-spacing: 1px;
}
.mejores-card p {
    color: #444;
    font-size: 1rem;
    margin: 0;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #fff8f3;
    color: #3d2c29;
}
header.header-principal {
    background: #fff;
    box-shadow: 0 2px 16px #0001;
    padding: 0;
    border-radius: 0 0 18px 18px;
    position: relative;
    z-index: 10;
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem 0.5rem 2.5rem;
    gap: 1.5rem;
}
.header-logo-titulo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.logo.grande {
    height: 70px;
    width: 70px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 8px #e7bfa7cc;
}
.header-titulos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.marca {
    font-size: 2rem;
    font-weight: bold;
    color: #1a237e;
    margin: 0;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.eslogan {
    font-size: 1rem;
    color: #d930a7;
    font-weight: 500;
    margin-top: 0.2rem;
    letter-spacing: 1px;
}
.buscador {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 0.2rem 1rem;
    box-shadow: 0 1px 4px #0001;
    min-width: 260px;
    flex: 1 1 320px;
    max-width: 400px;
}
.buscador input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1rem;
    padding: 0.7rem 0.5rem;
    flex: 1;
}
.buscador button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #1a237e;
    padding: 0 0.5rem;
}
.header-acciones {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.icono-header {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #1a237e;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    font-weight: 500;
    transition: color 0.2s;
}
.icono-header:hover {
    color: #d930a7;
}
.carrito-num {
    background: #d930a7;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    padding: 0.1rem 0.5rem;
    margin-left: 0.2rem;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -16px;
}
.accion-texto {
    display: none;
}
@media (min-width: 900px) {
    .accion-texto {
        display: inline;
    }
}
.menu-principal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(90deg, #1a237e 0%, #d930a7 100%);
    padding: 0.7rem 0;
    border-radius: 0 0 18px 18px;
    margin-top: 1rem;
    box-shadow: 0 2px 8px #0001;
}
.menu-principal a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 0.3rem 1.2rem;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: background 0.2s, color 0.2s;
}
.menu-principal a.activo, .menu-principal a:hover {
    background: #fff;
    color: #d930a7;
    box-shadow: 0 2px 8px #d930a733;
}
/* Iconos simples con emojis, puedes reemplazar por SVG si lo deseas */
.icon-search::before { content: "🔍"; }
.icon-user::before { content: "👤"; }
.icon-heart::before { content: "❤"; }
.icon-cart::before { content: "🛒"; }
main {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
}
#catalogo h2, #carrito h2, #contacto h2 {
    color: #d930a7;
    margin-bottom: 1rem;
}
.productos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
}
.producto {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px #1a237e22;
    padding: 2rem 1.2rem 1.5rem 1.2rem;
    text-align: center;
    border: 2px solid #e7eaf6;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.producto:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 32px #d930a744;
    border: 2px solid #d930a7;
}
.producto img {
    width: 100%;
    max-width: 180px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1.2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px #1a237e22;
}
.producto h3 {
    margin: 0.5rem 0 0.2rem 0;
    color: #1a237e;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 1px;
}
.producto-precio {
    color: #d930a7;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.7rem;
    margin-top: 0.2rem;
    display: block;
}
.producto p {
    margin: 0.5rem 0 1.2rem 0;
    color: #444;
    font-size: 1rem;
}
.producto button {
    background: linear-gradient(90deg, #1a237e 0%, #d930a7 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 2rem;
    font-size: 1.08rem;
    font-weight: bold;
    cursor: pointer;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px #d930a733;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.producto button:hover {
    background: linear-gradient(90deg, #d930a7 0%, #1a237e 100%);
    color: #ffffff;
    box-shadow: 0 4px 16px #1a237e33;
    transform: scale(1.05);
}
.producto-oferta {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, #1a237e 0%, #d930a7 100%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.3rem 0.9rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px #d930a744;
    letter-spacing: 1px;
    z-index: 2;
}
#carrito {
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px #0001;
}
#carrito-lista {
    margin-bottom: 1rem;
}
#carrito-total {
    font-weight: bold;
    margin-bottom: 1rem;
}
#vaciar-carrito {
    background: linear-gradient(90deg, #12185a 0%, #d930a7 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
#vaciar-carrito:hover {
    background: #e07a5f;
}
#contacto {
    margin-top: 3rem;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem 1rem;
    box-shadow: 0 2px 8px #0001;
}
#form-contacto {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}
#form-contacto input, #form-contacto textarea {
    padding: 0.7rem;
    border: 1px solid #e7bfa7;
    border-radius: 6px;
    font-size: 1rem;
}
#form-contacto button {
    background: #553b93;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
#form-contacto button:hover {
    background: #a86c4a;
}
footer {
    background: #e7bfa7;
    color: #3d2c29;
    text-align: center;
    padding: 1rem 0;
    margin-top: 3rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 -2px 8px #0001;
}

/* INICIO IMPACTANTE */
.inicio-impacto {
    background-image: url('../imagenes/muebles_belleza.png'), linear-gradient(90deg, #fff8f3 60%, #f7d7c4 100%);
    background-repeat: no-repeat;
    background-size: contain, cover;
    background-position: right bottom, center;
    padding: 3rem 1rem 2rem 1rem;
    border-radius: 3% 3% 3% 3%;
    box-shadow: 0 4px 24px #0001;
    margin-bottom: 2rem;
    min-height: 412px;
}
.inicio-contenido {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.inicio-texto {
    flex: 1 1 320px;
    min-width: 260px;
}
.inicio-texto h2 {
    color: #000000;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}
.inicio-texto p {
font-size: 1.2rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    color: #c51c98;
.btn-impacto {
    display: inline-block;
    background: #e07a5f;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 8px #0002;
    transition: background 0.2s, transform 0.2s;
}
.btn-impacto:hover {
    background: #a86c4a;
    transform: scale(1.05);
}
.inicio-video {
    flex: 1 1 320px;
    min-width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inicio-video video {
    width: 100%;
    max-width: 360px;
    border-radius: 12px;
    box-shadow: 0 4px 16px #0002;
    background: #fff8f3;
    border: 3px solid #e7bfa7;
}

/* Decoración de ondas inspirada en el logo */
.decor-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 180px;
    z-index: 0;
    pointer-events: none;
}
