
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
    position: relative;
    font-size: var(--font-size-base);
    /* Añadir un sutil degradado o textura de fondo si se desea */
    /* background: linear-gradient(to bottom, var(--light-color), var(--accent-color) 95%); */
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}


/* Decoraciones florales */
.floral-decor {
    position: absolute;
    width: 180px;
    height: 180px;
    /* Si tienes una nueva imagen floral del flyer, reemplaza 'floral-pattern.png' aquí */
    background-image: url('floral-pattern.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.floral-decor.top-left {
    top: -30px;
    left: -30px;
    transform: rotate(180deg);
}

.floral-decor.top-right {
    top: -30px;
    right: -30px;
}

/* Puedes añadir más decoraciones si tienes imágenes */
/*
.floral-decor.bottom-left {
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background-image: url('otra-flor.png'); // Reemplaza con tu imagen
    opacity: 0.1;
    z-index: -1;
    transform: rotate(90deg);
}
*/


/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(249, 241, 243, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    padding: 10px 0;
}

header.scrolled {
    background-color: rgba(249, 241, 243, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: var(--header-logo-height);
    width: auto;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 70px;
    /* Imagen de fondo para el Hero */
    background-image: linear-gradient(135deg, rgba(212, 175, 185, 0.5) 0%, rgba(249, 241, 243, 0.8) 100%), url('https://www.hogarmania.com/archivos/202109/mejores-serums-hacer-crecer-cejas-pestanas-productos-recomendados-1280x720x80xX.jpg'); /* <--- Reemplaza con tu imagen */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: var(--dark-color);
    overflow: hidden;
}

/* Decoraciones para el Hero inspiradas en el flyer */
/* Puedes añadir elementos con clases como .hero-floral-left, .hero-sparkle-top, etc. */
/*
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background-image: url('floral-bottom-left.png'); // Reemplaza con tu imagen
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0; // Debajo del contenido
}
*/


.magic-wand {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: url('magic-wand.png');
    background-size: contain;
    background-repeat: no-repeat;
    top: 15%;
    right: 15%;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    max-width: 700px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-title);
    font-size: 58px;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-content h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.hero-content p {
    font-size: 17px;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* Botón */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212, 175, 185, 0.3);
    font-size: 15px;
    letter-spacing: 0.4px;
}

.btn i {
    margin-left: 8px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 175, 185, 0.4);
}

/* Sections General */
section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow: hidden;
}


/* Services Section */
.section-title {
    font-family: var(--font-title);
    font-size: 38px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.services {
    background: var(--light-color);
    /* Puedes añadir un sutil patrón floral o degradado aquí */
    /* background: var(--light-color) url('small-floral-pattern.png') repeat; */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 35px 25px;
    border: 1px solid rgba(212, 175, 185, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 8px;
    background: var(--secondary-color);
}

.service-icon {
    width: var(--service-icon-size);
    height: var(--service-icon-size);
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.05);
    border-color: var(--secondary-color);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin: 0 0 12px 0;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-color);
    padding: 0 10px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 26px;
    margin-top: 12px;
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

/* Gallery Section */
.gallery {
    background: white;
    /* Puedes añadir un sutil degradado o textura aquí */
    /* background: linear-gradient(to top, var(--light-color), white); */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 185, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    padding: 0 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about {
    background: var(--light-color);
    /* Puedes añadir un sutil patrón floral o degradado aquí */
}

.about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content p { /* Asegurar estilos para los nuevos párrafos */
    margin-bottom: 15px;
}
.about-content p:last-of-type {
    margin-bottom: 20px; /* Margen antes de los features */
}
.about-content strong { /* Estilo para el nombre y detalles importantes */
    color: var(--secondary-color);
}


.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-width: 450px; /* Limitar ancho máximo de la imagen en desktop */
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--dark-color);
    padding: 12px;
    border-radius: 6px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--accent-color);
}

.feature i {
    color: var(--primary-color);
    font-size: 18px;
    min-width: 25px;
}

/* Contact Section */
.contact {
    background: white;
    /* Puedes añadir un sutil degradado o textura aquí */
    /* background: linear-gradient(to top, var(--accent-color) 5%, white 60%); */
}

.contact .container {
    display: flex;
    gap: 40px;
}

.contact-info, .contact-form {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 12px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.info-item p {
    margin: 0;
    color: var(--text-color);
}

/* Estilo específico para la nota de pago adicional */
.info-item p.note {
    font-size: 14px;
    color: var(--secondary-color);
    font-style: italic;
    margin-top: 0;
}


.info-item:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Estilo para los enlaces dentro de los info-items */
.contact-link {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}


.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    .info-item {
        margin-bottom: 0;
        display: inline-flex;
        align-items: center;
    }
}


.contact-form form {
    background: var(--light-color);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--dark-color);
    text-align: center;
}

.form-group {
    margin-bottom: 18px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--accent-color);
    border-radius: 6px;
    font-family: var(--font-text);
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(212, 175, 185, 0.2);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 50px 0 25px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo .logo-img {
    height: 70px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 15px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    opacity: 0.8;
}

/* WhatsApp Float - Mantengo este si lo quieres aparte del número de contacto */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: var(--whatsapp-size);
    height: var(--whatsapp-size);
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: #128C7E;
}


/* Responsive (Mantengo los últimos ajustes) */
@media (max-width: 992px) {
     .about .container, .contact .container {
        flex-direction: column;
        gap: 30px;
    }
     .about-image, .contact-info, .contact-form {
        width: 100%;
    }
    .about-image {
         margin-top: 20px;
         max-width: 400px; /* Ajustar max-width en vista de columna */
         margin-left: auto;
         margin-right: auto;
    }
     .contact-form {
         margin-top: 20px;
     }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(249, 241, 243, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    nav ul li a {
        font-size: 16px;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
        margin-top: 70px;
    }

    .hero-content {
         max-width: 90%;
         padding: 20px;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .services, .gallery, .about, .contact {
        padding: 60px 0;
    }

    .services-grid, .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 30px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .price {
        font-size: 22px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-overlay p {
        font-size: 16px;
    }

    .about-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
        margin-top: 20px;
    }

    .feature {
        font-size: 14px;
        padding: 10px;
    }

    .feature i {
        font-size: 16px;
        min-width: 20px;
    }

    .contact-form form {
        padding: 30px;
    }

    .info-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .social-links .info-item i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

     /* Mantener el float de WhatsApp en móvil si se desea */
     .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
        display: flex; /* Asegurar que se muestre */
     }


    .magic-wand {
       display: none;
    }
    /* Ajustar decoraciones florales en móvil */
    .floral-decor {
        width: 100px;
        height: 100px;
        opacity: 0.1;
        top: -10px;
        left: -10px;
    }
    .floral-decor.top-right {
        right: -10px;
    }

}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
     .hero-content h1 {
         font-size: 32px;
     }
     .hero-content h2 {
         font-size: 16px;
     }
     .section-title {
         font-size: 28px;
         margin-bottom: 30px;
     }
     .services, .gallery, .about, .contact {
         padding: 40px 0;
     }
     .services-grid, .gallery-grid {
         grid-template-columns: 1fr;
         gap: 15px;
     }
     .about-features {
         grid-template-columns: 1fr;
     }
     .service-card, .gallery-item, .feature, .contact-form form {
         padding: 20px;
     }
     .service-card h3 {
         font-size: 20px;
     }
     .price {
         font-size: 20px;
     }
     .info-item p, .contact-link {
         font-size: 14px;
     }
     .footer-logo .logo-img {
        height: 60px;
     }
      .about-image { /* Asegurar que la imagen se adapte en pantallas muy pequeñas */
        max-width: 100%;
     }
}

.logofooter{
    width: 120px;
    filter: brightness(100);
}



/* Add these new styles to your existing CSS */

/* Hero Notes */
.important-notes {
    margin-top: 30px;
    text-align: left;
    width: 100%;
}

.note {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.note i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    margin-top: 2px;
}

.note p {
    margin: 0;
    font-size: 14px;
    color: var(--dark-color);
    font-weight: 500;
}

/* Waxing Section */
.waxing {
    background: white;
    padding: var(--section-padding-y) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-column {
    background: var(--light-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pricing-column h3 {
    font-family: var(--font-title);
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
    position: relative;
}

.pricing-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--accent-color);
    font-size: 16px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:first-child {
    color: var(--text-color);
}

.price-list li span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

/* Eyebrows Section */
.eyebrows {
    background: var(--light-color);
    padding: var(--section-padding-y) 0;
}

/* Payment Methods */
.payment-methods {
    background: white;
    padding: var(--section-padding-y) 0;
    text-align: center;
}

.methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.method i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.method span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .important-notes {
        margin-top: 20px;
    }
    
    .note {
        padding: 10px 12px;
    }
    
    .note p {
        font-size: 13px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .methods-grid {
        gap: 15px;
    }
    
    .method {
        min-width: 100px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .note p {
        font-size: 12px;
    }
    
    .methods-grid {
        gap: 10px;
    }
    
    .method {
        min-width: 80px;
        padding: 12px 8px;
    }
    
    .method i {
        font-size: 24px;
    }
    
    .method span {
        font-size: 12px;
    }
}




:root {
    --primary-color: #d15a84; /* Rosa más intenso */
    --secondary-color: #d65788; /* Rosa oscuro */
    --accent-color: #f8bbd0; /* Rosa claro */
    --dark-color: #3a2e3d; /* Morado oscuro */
    --light-color: #fff5f7; /* Blanco rosado más intenso */
    --text-color: #5a4a4f; /* Gris rosado */
    --gold-color: #d4af37; /* Dorado para acentos */
    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;

    /* Variables para ajustar tamaños */
    --container-max-width: 1200px;
    --section-padding-y: 90px;
    --header-logo-height: 60px;
    --service-icon-size: 80px;
    --whatsapp-size: 60px;
    --font-size-base: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-color);
    position: relative;
    font-size: var(--font-size-base);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 245, 247, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(255, 245, 247, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: var(--header-logo-height);
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    background-image: linear-gradient(135deg, rgba(209, 74, 122, 0.4) 0%, rgba(248, 187, 208, 0.7) 100%), url('https://images.unsplash.com/photo-1596704017256-9a8cb4a8c1e3');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-title);
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 74, 122, 0.4);
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn i {
    margin-left: 10px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 74, 122, 0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

/* Sections General */
section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

/* Lashes Effects Section */
.lashes-effects {
    background: var(--light-color);
    padding: var(--section-padding-y) 0;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.effect-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.effect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.effect-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.effect-card:hover .effect-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.effect-card h3 {
    font-family: var(--font-title);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.effect-card p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid rgba(209, 74, 122, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    height: 8px;
    background: var(--secondary-color);
}

.service-icon {
    width: var(--service-icon-size);
    height: var(--service-icon-size);
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    transform: rotate(10deg) scale(1.1);
    border-color: var(--secondary-color);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 26px;
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
    padding: 0 10px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 32px;
    margin: 20px 0;
    position: relative;
}

.price::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

.benefits {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding: 0 15px;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-color);
}

.benefits i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Waxing Section */
.waxing {
    background: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-column {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-column h3 {
    font-family: var(--font-title);
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    position: relative;
}

.pricing-column h3::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--accent-color);
    font-size: 18px;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-list li span:first-child {
    color: var(--text-color);
}

.price-list li span:last-child {
    color: var(--primary-color);
    font-weight: 700;
}

/* Important Info Section */
.important-info {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    background: var(--light-color);
}

.methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    min-width: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.method i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
    color: white;
    opacity: 0.9;
}

.contact-details {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 20px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 16px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: var(--whatsapp-size);
    height: var(--whatsapp-size);
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: #128C7E;
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 1000px;
        --section-padding-y: 80px;
    }
}

@media (max-width: 992px) {
    :root {
        --section-padding-y: 70px;
        --header-logo-height: 55px;
    }
    
    .hero-content h1 {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding-y: 60px;
        --font-size-base: 15px;
    }
    
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: rgba(255, 245, 247, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    nav ul li a {
        font-size: 18px;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
        margin-top: 90px;
    }

    .hero-content {
        max-width: 90%;
        padding: 30px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 22px;
    }

    .section-title {
        font-size: 34px;
        margin-bottom: 50px;
    }
    
    .effects-grid, .services-grid, .info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .contact-content {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding-y: 50px;
        --header-logo-height: 50px;
    }
    
    .hero {
        height: 70vh;
        min-height: 400px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
        bottom: -15px;
    }
    
    .service-card, .effect-card, .info-card {
        padding: 30px 20px;
    }
    
    .service-icon, .effect-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .price {
        font-size: 28px;
    }
    
    .methods-grid {
        gap: 15px;
    }
    
    .method {
        min-width: 120px;
        padding: 20px 15px;
    }
    
    .method i {
        font-size: 30px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

:root {
    --primary-color: #d14a7a; /* Rosa más intenso */
    --secondary-color: #b33767; /* Rosa oscuro */
    --accent-color: #f8bbd0; /* Rosa claro */
    --dark-color: #3a2e3d; /* Morado oscuro */
    --light-color: #fff5f7; /* Blanco rosado más intenso */
    --text-color: #5a4a4f; /* Gris rosado */
    --gold-color: #d4af37; /* Dorado para acentos */
    --font-title: 'Playfair Display', serif;
    --font-text: 'Montserrat', sans-serif;

    /* Variables para ajustar tamaños */
    --container-max-width: 1200px;
    --section-padding-y: 90px;
    --header-logo-height: 60px;
    --service-icon-size: 80px;
    --whatsapp-size: 60px;
    --font-size-base: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    background-color: var(--light-color);
    position: relative;
    font-size: var(--font-size-base);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 245, 247, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

header.scrolled {
    background-color: rgba(255, 245, 247, 1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: var(--header-logo-height);
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 80px;
    background-image: linear-gradient(135deg, rgba(209, 74, 122, 0.4) 0%, rgba(248, 187, 208, 0.7) 100%), url('https://www.hogarmania.com/archivos/202109/mejores-serums-hacer-crecer-cejas-pestanas-productos-recomendados-1280x720x80xX.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.hero-content h1 {
    font-family: var(--font-title);
    font-size: 72px;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-content h2 {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--text-color);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 74, 122, 0.4);
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn i {
    margin-left: 10px;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(209, 74, 122, 0.5);
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
}

.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.call-btn {
    background: var(--dark-color);
}

.call-btn:hover {
    background: #2a1f2c;
}

/* Sections General */
section {
    padding: var(--section-padding-y) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: var(--font-title);
    font-size: 42px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: var(--text-color);
}

/* Services Section */
.services, .waxing, .eyebrows {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(209, 74, 122, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 26px;
    margin: 0 0 15px 0;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-color);
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 32px;
    margin: 20px 0;
    position: relative;
}



.benefits {
    list-style: none;
    text-align: left;
    margin-top: 20px;
    padding: 0;
}

.benefits li {
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.benefits i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
}

/* Gallery Section */
.gallery {
    background: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(209, 74, 122, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    padding: 0 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Important Info Section */
.important-info {
    background: white;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.info-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 5px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-title);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
}

/* Payment Methods */
.payment-methods {
    background: var(--light-color);
}

.methods-grid {
    
    
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    min-width: 140px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.method i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.method span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact .section-title {
    color: white;
}

.contact .section-title::after {
    background: white;
}

.contact-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: white;
    opacity: 0.9;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-details {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    font-size: 20px;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-img {
    height: 80px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 16px;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.8;
}

/* Menu Hamburguesa */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--dark-color);
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(255, 245, 247, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20% 0;
        transition: all 0.5s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        margin: 0;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        font-size: 18px;
        padding: 10px 20px;
        display: block;
        width: 100%;
    }
    
    nav ul li a::after {
        display: none;
    }
    
    header.scrolled nav ul {
        background: rgba(255, 245, 247, 1);
    }
}

/* Mejoras generales de responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding: 100px 0 60px;
        
    }
    
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content {
        width: 90%;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .gallery-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

