/* ===== RESET Y ESTILOS BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fcf4f8;
    color: #4a2c3a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BOTONES ===== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e84393, #d63384);
    color: #fff;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 67, 147, 0.5);
    background: linear-gradient(135deg, #d63384, #c2186b);
}

.btn-outline {
    background: transparent;
    border: 2px solid #e84393;
    color: #e84393;
    box-shadow: none;
}

.btn-outline:hover {
    background: #e84393;
    color: #fff;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
}

/* ===== BOTÓN WHATSAPP ===== */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4) !important;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54) !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5) !important;
    transform: translateY(-3px);
}

.btn-small {
    padding: 10px 24px !important;
    font-size: 0.85rem !important;
}

/* ===== HEADER ===== */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(232, 67, 147, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #e84393, #a0206b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo span {
    font-weight: 300;
    -webkit-text-fill-color: #a0206b;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    font-weight: 500;
    color: #4a2c3a;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e84393;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #e84393;
}

nav .nav-promo {
    background: linear-gradient(135deg, #e84393, #d63384);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

nav .nav-promo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.4);
    color: #fff;
}

nav .nav-promo::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    color: #4a2c3a;
    cursor: pointer;
}

/* ===== HERO CON SLIDER ===== */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0, #fce4ec);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 67, 147, 0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2d1b2a;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #e84393, #a0206b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a3d4a;
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-content .btn-group {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ===== SLIDER ===== */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(232, 67, 147, 0.25);
    aspect-ratio: 1/1;
}

.slider-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dot.active {
    background: #e84393;
    border-color: #fff;
    transform: scale(1.2);
}

.dot:hover {
    background: #e84393;
}

/* ===== BANNER PROMOCIONAL ===== */
.promo-banner {
    background: linear-gradient(135deg, #e84393, #a0206b);
    padding: 18px 0;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.promo-banner p {
    margin: 0;
}

.promo-banner strong {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== SECCIÓN HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d1b2a;
}

.section-header h2 span {
    background: linear-gradient(135deg, #e84393, #a0206b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #7a5d6a;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* ===== SERVICIOS (NUEVO DISEÑO PROFESIONAL) ===== */
.servicios {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

.servicios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fce4ec, #e84393, #fce4ec);
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.servicio-card {
    background: #fcf8fa;
    border-radius: 24px;
    padding: 40px 30px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(232, 67, 147, 0.06);
    position: relative;
    overflow: hidden;
}

.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e84393, #a0206b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.servicio-card:hover::before {
    opacity: 1;
}

.servicio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(232, 67, 147, 0.15);
    border-color: rgba(232, 67, 147, 0.15);
    background: #ffffff;
}

/* Icono con fondo circular */
.servicio-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.servicio-card:hover .servicio-icon {
    background: linear-gradient(135deg, #e84393, #a0206b);
    transform: scale(1.05) rotate(-5deg);
}

.servicio-icon span {
    font-size: 2.8rem;
    line-height: 1;
    transition: all 0.4s ease;
}

.servicio-card:hover .servicio-icon span {
    filter: brightness(10);
}

/* Título */
.servicio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d1b2a;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

/* Descripción */
.servicio-card p {
    color: #6a4d5a;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 22px;
    min-height: 60px;
}

/* Footer de la tarjeta (precio + botón) */
.servicio-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(232, 67, 147, 0.08);
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, #e84393, #d63384);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.25);
}

.btn-servicio {
    display: inline-block;
    background: transparent;
    color: #e84393;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #e84393;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-servicio:hover {
    background: #e84393;
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 67, 147, 0.35);
    transform: scale(1.02);
}

/* ===== RESPONSIVE para Servicios ===== */
@media (max-width: 768px) {
    .servicios-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .servicio-card {
        padding: 30px 20px 25px;
    }

    .servicio-icon {
        width: 65px;
        height: 65px;
    }

    .servicio-icon span {
        font-size: 2.2rem;
    }

    .servicio-card h3 {
        font-size: 1.2rem;
    }

    .servicio-card p {
        font-size: 0.9rem;
        min-height: 50px;
    }

    .servicio-footer {
        flex-direction: column;
        gap: 10px;
    }

    .price-tag {
        font-size: 0.8rem;
        padding: 5px 16px;
    }

    .btn-servicio {
        font-size: 0.8rem;
        padding: 6px 18px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 500px) {
    .servicios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== CONÓCENOS ===== */
.conocenos {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.conocenos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.conocenos-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(232, 67, 147, 0.15);
    object-fit: cover;
}

.conocenos-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d1b2a;
    margin-bottom: 20px;
}

.conocenos-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e84393;
    margin-top: 8px;
    border-radius: 2px;
}

.conocenos-content p {
    color: #5a3d4a;
    font-size: 1.05rem;
    margin-bottom: 18px;
    line-height: 1.8;
}

.conocenos-content .btn {
    margin-top: 10px;
}

/* ===== NUESTRA DIFERENCIA ===== */
.diferencia {
    padding: 80px 0;
    background: #fff;
}

.diferencia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: center;
}

.diferencia-item {
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #fcf4f8;
    border: 1px solid rgba(232, 67, 147, 0.06);
}

.diferencia-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 67, 147, 0.08);
}

.diferencia-item .icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 12px;
}

.diferencia-item h3 {
    font-size: 1.2rem;
    color: #2d1b2a;
    margin-bottom: 8px;
}

.diferencia-item p {
    color: #7a5d6a;
    font-size: 0.95rem;
}

/* ===== RESULTADOS ===== */
.resultados {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.resultado-item {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #f8bbd0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.resultado-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(232, 67, 147, 0.2);
}

.resultado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== TINTES ===== */
.tintes {
    padding: 80px 0;
    background: #fff;
}

.tintes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.tinte-item {
    background: #fcf4f8;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(232, 67, 147, 0.06);
}

.tinte-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(232, 67, 147, 0.12);
}

.tinte-item .color-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tinte-item h4 {
    font-size: 1.1rem;
    color: #2d1b2a;
}

.tinte-item p {
    font-size: 0.85rem;
    color: #7a5d6a;
    margin-top: 6px;
}

/* ===== TESTIMONIOS ===== */
.testimonios {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec, #f8bbd0);
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonio-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    border-left: 4px solid #e84393;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(232, 67, 147, 0.08);
}

.testimonio-card p {
    font-style: italic;
    color: #4a2c3a;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonio-card h4 {
    margin-top: 18px;
    color: #e84393;
    font-weight: 600;
}

/* ===== CONTACTO ===== */
.contacto {
    padding: 80px 0;
    background: #fff;
}

.contacto .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contacto-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d1b2a;
    margin-bottom: 20px;
}

.contacto-info h2 span {
    background: linear-gradient(135deg, #e84393, #a0206b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacto-info p {
    color: #5a3d4a;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contacto-info .detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
    font-size: 1rem;
}

.contacto-info .detail .emoji {
    font-size: 1.5rem;
    width: 40px;
}

.contacto-form {
    background: #fcf4f8;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(232, 67, 147, 0.06);
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #f0e0e6;
    border-radius: 12px;
    margin-bottom: 18px;
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.3s ease;
    background: #fff;
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    border-color: #e84393;
    box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.08);
}

.contacto-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contacto-form .btn {
    width: 100%;
    text-align: center;
}

/* ===== FOOTER ===== */
footer {
    background: #2d1b2a;
    color: #e8d0d8;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    color: #c9b0ba;
    font-size: 0.95rem;
    line-height: 2;
}

.footer-col a {
    display: block;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #e84393;
}

.footer-col .social {
    display: flex;
    gap: 18px;
    font-size: 1.5rem;
}

.footer-col .social a {
    transition: color 0.3s ease;
}

.footer-col .social a:hover {
    color: #e84393;
}

.footer-bottom {
    border-top: 1px solid rgba(232, 67, 147, 0.15);
    padding-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 35px;
    }

    .hero-content .btn-group {
        justify-content: center;
    }

    .slider-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .contacto .container {
        grid-template-columns: 1fr;
    }

    .conocenos-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conocenos-content h2::after {
        margin: 8px auto 0;
    }

    .hero {
        padding: 140px 0 70px;
        min-height: auto;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 15px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 0 0 20px 20px;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .slider-container {
        max-width: 300px;
    }

    .section-header h2,
    .contacto-info h2,
    .conocenos-content h2 {
        font-size: 2.2rem;
    }

    .contacto-form {
        padding: 25px;
    }

    .promo-banner {
        font-size: 1rem;
        padding: 14px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .servicio-card {
        padding: 30px 20px;
    }

    .testimonio-card {
        padding: 25px 20px;
    }

    .promo-banner {
        font-size: 0.85rem;
        padding: 12px 0;
    }

    .slider-container {
        max-width: 280px;
    }
}