
/* ---- HERO SECTION ---- */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000;
}

.hero {
    width: 100%;
    height: 90vh;
    background: linear-gradient(135deg, #2a0d42, #5b3a8c, #000);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientMove {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.hero-content {
    color: #f5d4ff;
    padding-bottom: 40px;
}

.logo {
    margin-bottom: -20px;
    width: 460px;
    max-width: 95%;
    filter: drop-shadow(0 0 18px #c08cff);
    animation: logoGlow 4s ease-in-out infinite alternate;
}



h1 {
    font-family: "Great Vibes", cursive;
    font-size: 3.5rem;
    font-weight: normal;
    margin-top: 15px;
    margin-bottom: 5px; /* reduce espacio con el subtítulo */
}



p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #eee;
    line-height: 1.6;
}



.hero-buttons {
    display: flex;
    flex-direction: column; /* 🔥 Los pone uno debajo del otro en móvil */
    gap: 15px;
    justify-content: center;
    align-items: center; /* 🔥 Centrado perfecto */
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row; /* 🔥 En desktop sí van lado a lado */
    }
}


.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #000;
    transition: 0.3s ease;
    box-shadow: 0 0 12px #c08cff80;
}

.btn-primary {
    background: linear-gradient(90deg, #b36aff, #ffbdfb);
}

.btn-secondary {
    background: linear-gradient(90deg, #b36aff, #ffbdfb);
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #e6b7ff;
}
/* ---- BRILLOS ANIMADOS ---- */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    opacity: 0.8;
    border-radius: 50%;
    animation: sparkleAnim 3s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

@keyframes sparkleAnim {
    0% { transform: scale(0.5); opacity: 0.2; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.5); opacity: 0.2; }
}
/* ---- PARTÍCULAS FLOTANDO ---- */
.floating {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    filter: blur(2px);
    animation: floatAnim 12s infinite ease-in-out;
    pointer-events: none;
}

@keyframes floatAnim {
    0% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(20px); opacity: 0.9; }
    100% { transform: translateY(0) translateX(0); opacity: 0.3; }
}

/* ---- NIEBLA SUAVE ABAJO, NIEBLA 2 ---- */

.niebla {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(60, 0, 90, 0) 0%,
        rgba(10, 0, 20, 1) 100%);
    pointer-events: none;
}


@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 12px #b46bff);
    }
    to {
        filter: drop-shadow(0 0 28px #ffbdfc);
    }
}



.hero-content {
    margin-top: -20px; /* sube todo visualmente */
}

.btn {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 35px;
    transition: 0.3s ease;
}

.subtitle {
    font-family: "Marcellus", serif;
    font-size: 1.6rem;
    letter-spacing: .5px;
    margin-top: 5px;
    margin-bottom: 25px;
    color: #f4e6ff;
}

/* Scrollbar elegante en navegadores basados en Webkit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #b57bff, #8c3cff);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ca99ff, #a169ff);
}


/* ============================
   MÓDULO 2 - SOBRE LA ARTISTA
=============================== */

.about {
    width: 100%;
    padding: 90px 8%; /* antes 120px 10% */
    background: rgba(25, 0, 50, 0.2);
    backdrop-filter: blur(4px);
}

.about-content {
     display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; /* antes 60px */
}

.about-img img {
    width: 380px;
    height: auto;
    border-radius: 18px;
    

    /* Glow potenciado */
    box-shadow: 0 0 45px rgba(200, 140, 255, 0.55);
    animation: imgGlow 5s ease-in-out infinite alternate;
}

/* glow animacion brillo */
@keyframes imgGlow {
    0% {
        box-shadow: 0 0 35px rgba(180, 120, 255, 0.40);
    }
    100% {
        box-shadow: 0 0 75px rgba(220, 160, 255, 0.75);
    }
}



.about-text h2 {
    font-family: "Marcellus", serif;
    font-size: 2.8rem;
    color: #f4e6ff;
    margin-bottom: 20px;
}

.about-text span {
    color: #c79aff;
}

.about-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #e7d8ff;
    margin-bottom: 25px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #f7ecff;
    margin-bottom: 10px;
}
/* -------- FIX: evitar color cambiado por visited -------- */
.about-list a,
.about-list a:visited,
.about-list a:active,
.about-list a:focus {
    color: #ffffff !important;
    text-decoration: none;
}

/* Hover — efecto bonito */
.about-list a:hover {
    color: #ffffff !important;
    opacity: 0.9;
}
/* -------------------------------------------------------- */

html, body {
    overflow-x: hidden;
}

.about-text {
    max-width: 450px;
    text-align: center;    /* 👈 centrado total */
    margin: 0 auto;        /* 👈 lo centra dentro del espacio */
}

.container {
    max-width: 1300px; /* ancho ideal para landing comerciales */
    margin: 0 auto;    /* centra el contenido */
}

/* === EFECTO ELEGANTE PARA LOS ITEMS INTERACTIVOS === */
.link-item {
    position: relative;
    cursor: pointer;
    transition: 0.3s ease;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-item .flecha {
    opacity: 0;
    transform: translateX(-4px);
    transition: 0.3s ease;
    font-size: 1.1rem;
    color: #d8b4ff;
}

/* Glow + color suave */
.link-item:hover {
    color: #e9c7ff; /* tono angelical */
    text-shadow: 0 0 8px rgba(207,140,255,0.4);
}

/* Flecha aparece */
.link-item:hover .flecha {
    opacity: 1;
    transform: translateX(2px);
}

/* Subrayado animado */
.link-item::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #b86cff, #e5b9ff);
    box-shadow: 0 0 8px #d19bff;
    transition: width 0.35s ease;
    border-radius: 4px;
}

.link-item:hover::after {
    width: 100%;
}

/* --- Tooltip suave para indicar clic --- */
.click-area {
    position: relative;
    cursor: pointer;
}

.click-area .tooltip {
    position: absolute;
    bottom: -28px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    background: rgba(210, 170, 255, 0.15);
    border: 1px solid rgba(230, 200, 255, 0.3);
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
    color: #f2dfff;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
    transform: translateY(5px);
    white-space: nowrap;
}

.click-area:hover .tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Glow leve al pasar el mouse */
.click-area:hover {
    text-shadow: 0 0 8px rgba(210, 160, 255, 0.4);
}

/* ============================
   MÓDULO 3 – TRENZAS AFRICANAS
============================ */

.braids {
    width: 100%;
    padding: 100px 0 120px;
    position: relative;
    z-index: 1 !important;
    background: #06000b; /* un poco más oscuro para diferenciar del hero */
}

.braids-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.braids-header {
    text-align: center;
    margin-bottom: 60px;
}

.braids-header h2 {
    font-family: "Marcellus", serif;
    font-size: 2.6rem;
    color: #f4e6ff;
    margin-bottom: 10px;
}

.braids-header p {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #d8c9ff;
}

/* GRID DE TARJETAS */
.braids-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* TARJETA DE ESTILO */
.braid-card {
    background: radial-gradient(circle at top left, #241137 0%, #050008 70%);
    border-radius: 26px;
    padding: 28px 26px 30px;
    box-shadow: 0 0 40px rgba(150, 90, 255, 0.2);
    border: 1px solid rgba(180, 120, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.braid-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(210, 170, 255, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.braid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 55px rgba(200, 140, 255, 0.35);
}

.braid-card:hover::before {
    opacity: 1;
}

.braid-card h3 {
    font-family: "Marcellus", serif;
    font-size: 1.6rem;
    color: #f7ecff;
    margin-bottom: 6px;
}

.braid-price {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #ffbdfc;
    margin-bottom: 14px;
}

.braid-desc {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    color: #e7d8ff;
    line-height: 1.6;
    margin-bottom: 18px;
}

.braid-desc .note {
    font-size: 0.85rem;
    color: #c2a6ff;
}

/* GALERÍA DE FOTOS DENTRO DE LA TARJETA */
.braid-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.braid-gallery img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.braid-gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(200, 140, 255, 0.65);
}

/* BOTÓN DENTRO DE LA TARJETA */
.braid-btn {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.9rem;
    padding-inline: 26px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .braids {
        padding: 80px 8% 90px;
    }

    .braids-header h2 {
        font-size: 2.1rem;
    }

    .braid-gallery img {
        height: 130px;
    }
}

.braids-actions {
    text-align: center;
    margin-top: 40px;
}

.braids-main-btn {
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 0 18px rgba(200, 140, 255, 0.5);
}


/* Glow para las tarjetas de estilos */
.braid-card {
    animation: glowPulse 6s ease-in-out infinite alternate;
}

/* ================================
   POP-UP CERTIFICACIONES
================================ */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 999;
    pointer-events: none;
}

.popup-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.popup-box {
    width: 85%;
    max-width: 420px;
    background: #150021;
    border-radius: 22px;
    padding: 35px 30px;
    text-align: center;
    position: relative;

    /* Glow morado tipo TrenzAngel */
    box-shadow: 0 0 40px rgba(180, 80, 255, 0.35);

    /* Animación Fade + Zoom */
    transform: scale(0.7);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease;
}

.popup-overlay.active .popup-box {
    transform: scale(1);
    opacity: 1;
}

.popup-title {
    font-family: "Marcellus", serif;
    color: #f4e6ff;
    font-size: 1.9rem;
    margin-bottom: 20px;
}

.popup-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.popup-list li {
    font-family: "Poppins", sans-serif;
    color: #e7d8ff;
    font-size: 1rem;
    margin-bottom: 10px;
}

.popup-close {
    background: linear-gradient(90deg, #b36aff, #ffbdfb);
    border: none;
    padding: 10px 22px;
    border-radius: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    cursor: pointer;
    color: #000;
    box-shadow: 0 0 20px rgba(200, 140, 255, 0.4);
    transition: transform .25s ease;
}

.popup-close:hover {
    transform: scale(1.05);
}

/* ============================
   MÓDULO 4 – MAQUILLAJE
============================ */

.makeup {
    width: 100%;
    padding: 100px 0 120px;
    
    background: #05000a; /* similar a braids, un poco diferente para transición suave */
}

.makeup-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.makeup-header {
    text-align: center;
    margin-bottom: 50px;
}

.makeup-header h2 {
    font-family: "Marcellus", serif;
    font-size: 2.6rem;
    color: #f4e6ff;
    margin-bottom: 10px;
}

.makeup-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #d8c9ff;
}

.makeup-prices p {
    margin: 4px 0;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #f1e6ff;
}

.makeup-prices .label {
    font-weight: 600;
    color: #ffbdfc;
}

.makeup-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #cbb5ff;
}

/* GALERÍA MAQUILLAJE */
.makeup-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 30px;
}

.makeup-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.makeup-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 0 20px rgba(200, 140, 255, 0.6);
}

/* BOTÓN AGENDAR DEBAJO DE LA GALERÍA */
.makeup-actions {
    text-align: center;
    margin-top: 50px;
}

.makeup-btn {
    font-size: 0.95rem;
    padding-inline: 36px;
}

/* Responsive */
@media (max-width: 768px) {
    .makeup {
        padding: 80px 0 90px;
    }

    .makeup-header h2 {
        font-size: 2.1rem;
    }

    .makeup-gallery img {
        height: 170px;
    }
}

.makeup-header {
    text-align: center;
    margin-bottom: 40px;
}

.makeup-header h2 {
    font-family: "Marcellus", serif;
    font-size: 2.6rem;
    color: #f4e6ff;
    margin-bottom: 14px;
}

.makeup-desc {
 font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #d8c9ff;
}

/* ============================
   MEJORA DE IMÁGENES MAQUILLAJE
============================ */

/* Contenedor que ya tienes */
.makeup-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;       /* por si el espacio es pequeño */
}

/* IMÁGENES MEJORADAS (más grandes + más elegantes) */
.makeup-gallery img {
    width: 220px;          /* antes eran más pequeñas */
    height: 280px;         /* más altas → look profesional */
    object-fit: cover;
    border-radius: 20px;   /* esquinas suaves */
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45); /* sombra elegante */
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* EFECTO HOVER (sin exagerar) */
.makeup-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 0 0 28px rgba(165, 100, 255, 0.55);
}

/* GLOW DETRÁS DE CADA FOTO */
.makeup-gallery img {
    position: relative;
    z-index: 2;
}

/* Truco del glow con pseudo-elemento */
.makeup-gallery img::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    z-index: -1;
}

.makeup-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 
        0 0 20px rgba(200, 140, 255, 0.50),
        0 0 35px rgba(200, 140, 255, 0.35);
}

/* ============================
   MÓDULO 5 – PEINADOS EVENTOS
============================ */

.events {
    width: 100%;
    padding: 100px 0 120px;
    background: #040008; /* tono suave para transición */
}

.events-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.events-header {
    text-align: center;
    margin-bottom: 50px;
}

.events-header h2 {
    font-family: "Marcellus", serif;
    font-size: 2.6rem;
    color: #f4e6ff;
    margin-bottom: 14px;
}

.events-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #d8c9ff;

}

/* GALERÍA */
.events-gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.events-gallery img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.events-gallery img:hover {
    transform: scale(1.06);
    box-shadow: 
        0 0 20px rgba(200, 140, 255, 0.50),
        0 0 35px rgba(200, 140, 255, 0.35);
}

/* BOTÓN */
.events-actions {
    text-align: center;
    margin-top: 50px;
}

.events-btn {
    font-size: 0.95rem;
    padding-inline: 36px;
}

/* Responsive */
@media (max-width: 768px) {
    .events {
        padding: 80px 0 90px;
    }

    .events-header h2 {
        font-size: 2.1rem;
    }

    .events-gallery img {
        height: 230px;
    }
}

/* ============================
   MÓDULO 5 – AGENDAMIENTO
============================ */

.agenda {
    width: 100%;
    padding: 100px 0 40px;
    background: transparent !important;
    position: relative;
    z-index: 2 !important;
}

.agenda-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.agenda-header {
    text-align: center;
    margin-bottom: 50px;
}

.agenda-header h2 {
    font-family: "Marcellus", serif;
    font-size: 2.6rem;
    color: #f4e6ff;
    margin-bottom: 10px;
}

.agenda-header p {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: #d8c9ff;
}

/* FORMULARIO */
.agenda-form {
    display: grid;
    gap: 28px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px 35px;
    border-radius: 22px;
    box-shadow: 0 0 25px rgba(200, 140, 255, 0.20);
    border: 1px solid rgba(180, 120, 255, 0.25);
    backdrop-filter: blur(6px);
}

.form-group label {
    font-family: "Poppins", sans-serif;
    color: #f1e6ff;
    font-size: 1rem;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #110017;
    border: 1px solid rgba(180, 120, 255, 0.35);
    padding: 12px 14px;
    border-radius: 12px;
    color: #f8eaff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    outline: none;
    transition: 0.25s ease;
    box-shadow: 0 0 12px rgba(150, 90, 255, 0.15);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 20px rgba(200, 140, 255, 0.6);
    border-color: #d8b4ff;
}

/* BOTÓN */
.agenda-btn {
    margin-top: 20px;
    width: 100%;
    font-size: 1.1rem;
    padding: 14px 0;
    border-radius: 18px;
    box-shadow: 0 0 18px rgba(230, 160, 255, 0.55);
}


section {
    position: relative;
    z-index: 1;
}


/* FIX DEFINITIVO PARA QUE LOS ENLACES FUNCIONEN */
section {
    position: relative;
    z-index: 1;
}

.braids {
    position: relative;
    z-index: 1 !important;
}

.agenda {
    position: relative;
    z-index: 2 !important;
}

/* ============================
   SPARKLES Y PARTÍCULAS GLOBALES
============================ */

#global-sparkles,
#global-particles {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* CLAVE: no bloquea clics */
    z-index: 9999; /* Encima de todo pero sin interactuar */
}

/* Sparkles globales */
#global-sparkles .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    opacity: 0.8;
    border-radius: 50%;
    animation: sparkleAnim 3s infinite ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
}

/* Partículas globales */
#global-particles .floating {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    filter: blur(2px);
    animation: floatAnim 12s infinite ease-in-out;
    pointer-events: none;
}

/* ============================
   FOOTER – DISEÑO TRÉNZANGEL
============================ */

.footer {
    width: 100%;
    background: rgba(10, 0, 20, 0.65);
    padding: 60px 20px 40px;
    backdrop-filter: blur(6px);
    position: relative;
    z-index: 2;
    box-shadow: 0 -10px 40px rgba(180, 120, 255, 0.15);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo img {
    width: 120px;
    filter: drop-shadow(0 0 12px rgba(200, 140, 255, 0.45));
    margin-bottom: 10px;
}

.footer-logo p {
    font-family: "Marcellus", serif;
    color: #e8d8ff;
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-links a {
    color: #f4e6ff;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #ffbdfc;
    text-shadow: 0 0 10px rgba(200, 140, 255, 0.6);
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 22px;
}

.footer-social a {
    color: #ffbdfc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    text-shadow: 0 0 12px rgba(210, 150, 255, 0.75);
}

.footer-copy {
    margin-top: 40px;
    color: #c7b3ff;
    font-size: 0.9rem;
    font-family: "Poppins", sans-serif;
    opacity: 0.7;
}

/* ============================
   FOOTER MEJORADO – TRENZANGEL
============================ */

.footer {
    width: 100%;
    background: #040008 !important; /* MISMO FONDO QUE EL SITIO */
    padding: 80px 20px 40px;
    position: relative;
    overflow: hidden;
    border-top: none !important;
    box-shadow: none !important;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* LOGO MÁS GRANDE + GLOW */
.footer-logo img {
    width: 180px;
    filter: drop-shadow(0 0 22px rgba(200, 140, 255, 0.75));
}

.footer-slogan {
    margin-top: 10px;
    font-family: "Great Vibes", cursive;
    font-size: 2rem;
    color: #ffd8ff;
    text-shadow: 0 0 15px rgba(255, 200, 255, 0.45);
}

/* ENLACES */
.footer-links {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-links a {
    color: #f7e9ff;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "Marcellus", serif;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffbdfc;
    text-shadow: 0 0 12px rgba(200, 140, 255, 0.7);
}

/* ICONOS REDES SOCIALES */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

.social-btn img {
    width: 38px;
    height: 38px;
    filter: drop-shadow(0 0 8px rgba(255, 180, 255, 0.4));
    transition: 0.3s ease;
}

.social-btn:hover img {
    transform: scale(1.12);
    filter: drop-shadow(0 0 18px rgba(255, 180, 255, 0.9));
}

/* COPY */
.footer-copy {
    margin-top: 35px;
    color: #d7c6ff;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
}




.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.footer-social img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(200, 140, 255, 0.6));
    transition: transform .25s ease, filter .25s ease;
}

.footer-social img:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 0 12px rgba(220, 160, 255, 0.9));
}

footer, .footer {
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 0;
}

/* responsive */

@media (max-width: 480px) {
    .hero {
        height: auto;
        padding: 60px 20px 80px;
    }

    .logo {
        width: 240px;
        margin-bottom: -10px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-img img {
        width: 80%;
        min-width: 260px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {

    .braids-header h2 {
        font-size: 2rem;
    }

    .braids-grid {
        gap: 25px;
    }

    .braid-card {
        padding: 20px;
    }

    .braid-gallery img {
        height: 110px;
    }

    .braid-card h3 {
        font-size: 1.3rem;
    }
}

/* ===============================
   FIX RESPONSIVE DEFINITIVO MOVIL
   =============================== */

/* ===== HERO (corrige texto cortado) ===== */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        padding: 0 10px;
    }

    .subtitle {
        font-size: 1.1rem !important;
        padding: 0 15px;
    }

    .hero-buttons .btn {
        width: 90%;
        margin: 8px auto;
        font-size: 1rem;
    }
}


/* ===== SOBRE TRENZANGEL (centrado real) ===== */
@media (max-width: 480px) {

    .about {
        padding: 60px 20px !important;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .about-img img {
        width: 90% !important;
    }

    .about-text {
        max-width: 100% !important;
        padding: 0 15px;
    }

    .about-desc {
        font-size: 1rem !important;
    }

    .about-list li {
        font-size: 1rem !important;
    }
}


/* ===== BRAIDS (evita cortes laterales) ===== */
@media (max-width: 480px) {

    .braids {
        padding: 60px 10px !important;
    }

    .braid-card {
        padding: 22px 18px !important;
        margin: 0 auto;
        width: 100% !important;
    }

    .braid-gallery img {
        height: 110px !important;
    }
}

@media (max-width: 480px) {
    .hero {
        transform: none !important;
    }

    .hero-content {
        padding: 0 20px !important;
    }

    h1 {
        font-size: 2.3rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .about-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 25px !important;
    }

    .about-img img {
        width: 90% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    .about-text {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .braids {
        padding: 60px 15px !important;
    }

    .braids-header h2 {
        font-size: 2rem !important;
    }

    .braids-header p {
        padding: 0 20px !important;
    }
}

/* FIX: asegurar que los botones del hero se centren */
.hero-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* FIX: centrar tarjetas braids en pantallas pequeñas */
@media (max-width: 480px) {

    .braids-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
    }

    .braid-card {
        width: 95% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
}

/* FIX: asegurar que los botones del hero se centren */
.hero-buttons {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* FIX: centrar tarjetas braids en pantallas pequeñas */
@media (max-width: 480px) {

    .braids-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
    }

    .braid-card {
        width: 95% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
    }
}


@media (max-width: 480px) {
    .hero-content {
        margin-top: 0 !important;
        padding: 0 20px !important;
    }

    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center !important;
    }

    .hero-buttons .btn {
        width: 75% !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    .braids-inner {
        padding: 0 15px !important;
    }

    .braids-grid {
        width: 100% !important;
        margin: 0 auto !important;
        justify-items: center !important;
    }

    .braid-card {
        width: 75% !important;
        margin: 0 auto !important;
    }
}

/* FIX definitivo solo para desktop */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }
}
