/* Reset y estilos básicos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-cream: #f2e5dc;
    --color-pink: #be3e77;
    --color-dark-pink: #b73470;
    --color-gray: #525252;
    --color-white: #ffffff;
    --color-light-gray: #f8f8f8;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-gray);
    overflow-x: hidden;
    background-color: var(--color-cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos del header */
.header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Estilos del logo */
.logo a {
    text-decoration: none;
}

.logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-pink);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-dark-pink);
}

/* Estilos del menú de navegación */
.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 500;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--color-pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Estilos del menú hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.bar {
    height: 3px;
    width: 100%;
    background-color: var(--color-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Estilos de la sección Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('../images/2.svg');
   background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(190, 62, 119, 0.85) 0%, rgba(183, 52, 112, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    color: var(--color-white);
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 35px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background-color: var(--color-white);
    color: var(--color-pink);
    border: 2px solid var(--color-white);
}

.cta-button.primary:hover {
    background-color: transparent;
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.cta-button.secondary:hover {
    background-color: var(--color-white);
    color: var(--color-pink);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Sección Tratamientos Destacados */
.featured-treatments {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.featured-card {
    background: var(--color-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(190, 62, 119, 0.3);
}

.featured-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 25px;
    text-align: center;
}

.featured-content h3 {
    font-size: 1.4rem;
    color: var(--color-pink);
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-content p {
    color: var(--color-dark-pink);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.featured-link {
    display: inline-block;
    color: var(--color-pink);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.featured-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-pink);
    transition: width 0.3s ease;
}

.featured-link:hover {
    color: var(--color-dark-pink);
}

.featured-link:hover::after {
    width: 100%;
}

/* Sección Quiénes Somos */
.about-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 20px;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-dark-pink);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--color-gray);
}

.about-features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature i {
    color: var(--color-pink);
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
}

.feature span {
    font-weight: 500;
    color: var(--color-gray);
}

/* Sección Servicios */
.services-section {
    padding: 100px 0;
    background-color: var(--color-white);
}

.services-category {
    margin-bottom: 60px;
}

.services-category h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--color-pink);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.services-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-dark-pink);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--color-light-gray);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--color-pink);
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--color-dark-pink);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

.service-card h4 {
    font-size: 1.3rem;
    color: var(--color-pink);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark-pink);
    margin-bottom: 20px;
}

/* Tooltip para servicios con descripción */
.tooltip-service {
    position: relative;
    overflow: visible;
}

.service-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background: var(--color-white);
    color: var(--color-gray);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
}

.service-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: var(--color-white) transparent transparent transparent;
}

.tooltip-service:hover .service-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Descripción de extensiones */
.service-description-card {
    background: var(--color-cream);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
    border-left: 4px solid var(--color-pink);
}

.service-description-card p {
    font-style: italic;
    color: var(--color-gray);
    line-height: 1.6;
    margin: 0;
}

/* Grid de extensiones */
.extensions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.extension-card {
    background: var(--color-light-gray);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    border-top: 3px solid var(--color-pink);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.extension-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.extension-card h4 {
    font-size: 1.2rem;
    color: var(--color-pink);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.extension-prices {
    margin-bottom: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(82, 82, 82, 0.2);
}

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-item span:first-child {
    color: var(--color-gray);
}

.price-item span:last-child {
    font-weight: 600;
    color: var(--color-dark-pink);
}

/* Sección Testimonios */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--color-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.client-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .client-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 25px;
}

.rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.rating i {
    margin-right: 2px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--color-gray);
}

.testimonial-content h4 {
    color: var(--color-pink);
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-content span {
    font-size: 0.9rem;
    color: var(--color-gray);
}

/* Sección Contacto */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-cream);
}

.contact-content {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--color-pink);
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--color-gray);
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-pink);
}

/* Footer */
.footer {
    background-color: var(--color-gray);
    color: var(--color-white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
}

.footer-logo span {
    color: var(--color-pink);
}

.footer-logo p {
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--color-pink);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-dark-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.9rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================== */
/* MEDIA QUERIES - RESPONSIVE */
/* =========================== */

/* Tablets y pantallas medianas (860px y menos) */
@media screen and (max-width: 860px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--color-white);
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        padding: 20px 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        display: block;
        padding: 15px 30px;
        margin: 5px 0;
        font-size: 18px;
    }
    
    /* Animación del menú hamburguesa */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    /* Ajustes para la sección Hero en tablets */
    .hero {
        background-attachment: scroll;
        padding: 100px 0 60px;
        min-height: 80vh;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Ajustes para Tratamientos Destacados en tablets */
    .featured-treatments {
        padding: 80px 0;
    }
    
    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    /* Ajustes para Quiénes Somos en tablets */
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 2.2rem;
    }
    
    /* Ajustes para Testimonios en tablets */
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* Ajustes para Servicios en tablets */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .extensions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-tooltip {
        width: 250px;
        font-size: 0.85rem;
    }
    
    /* Ajustes para Contacto en tablets */
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Ajustes para Footer en tablets */
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Móviles grandes (768px y menos) */
@media screen and (max-width: 768px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        gap: 15px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Ajustes para Tratamientos Destacados en móviles grandes */
    .featured-treatments {
        padding: 70px 0;
    }
    
    /* Ajustes para Quiénes Somos en móviles grandes */
    .about-section, .testimonials-section, .services-section, .contact-section {
        padding: 80px 0;
    }
    
    .about-text h2, .section-header h2, .contact-info h2 {
        font-size: 2rem;
    }
}

/* Móviles medianos (576px y menos) */
@media screen and (max-width: 576px) {
    .header .container {
        padding: 12px 15px;
    }
    
    .logo h2 {
        font-size: 20px;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        padding: 12px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Ajustes para Tratamientos Destacados en móviles medianos */
    .featured-treatments {
        padding: 60px 0;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .featured-content {
        padding: 20px;
    }
    
    .featured-content h3 {
        font-size: 1.3rem;
    }
    
    /* Ajustes para Quiénes Somos en móviles medianos */
    .about-section, .testimonials-section, .services-section, .contact-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text h2, .section-header h2, .contact-info h2 {
        font-size: 1.8rem;
    }
    
    /* Ajustes para Testimonios en móviles medianos */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-content {
        padding: 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    /* Ajustes para Servicios en móviles medianos */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .extensions-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .extension-card {
        padding: 20px;
    }
    
    .service-tooltip {
        width: 200px;
        font-size: 0.8rem;
        padding: 15px;
    }
}

/* Móviles pequeños (480px y menos) */
@media screen and (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .nav-menu {
        width: 85%;
    }
    
    /* Ajustes para Tratamientos Destacados en móviles pequeños */
    .featured-content h3 {
        font-size: 1.2rem;
    }
    
    /* Ajustes para Quiénes Somos en móviles pequeños */
    .about-text h2, .section-header h2, .contact-info h2 {
        font-size: 1.6rem;
    }
    
    .about-features {
        margin: 20px 0;
    }
    
    .service-description-card {
        padding: 20px 15px;
    }
}

/* Móviles muy pequeños (360px y menos) */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .logo h2 {
        font-size: 18px;
    }
    
    .cta-button {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    /* Ajustes para Tratamientos Destacados en móviles muy pequeños */
    .featured-content h3 {
        font-size: 1.1rem;
    }
    
    /* Ajustes para Quiénes Somos en móviles muy pequeños */
    .about-text h2, .section-header h2, .contact-info h2 {
        font-size: 1.5rem;
    }
}

/* Estilos adicionales para mejorar la apariencia */
.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Espacio para el contenido principal */
main {
    margin-top: 0;
}

/* Estilos adicionales para el formulario */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 2px rgba(190, 62, 119, 0.1);
}

.btn-loading .fa-spinner {
    margin-right: 8px;
}

#form-message {
    text-align: center;
    font-weight: 500;
}

/* Estilos para el formulario de contacto */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 2px rgba(190, 62, 119, 0.1);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.btn-loading .fa-spinner {
    margin-right: 8px;
}

#form-message {
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mejoras de accesibilidad */
.form-group input:required + label::after,
.form-group textarea:required + label::after {
    content: " *";
    color: var(--color-pink);
}
/* Estilos mejorados para el formulario */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--color-white);
    box-sizing: border-box;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23525252' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-pink);
    box-shadow: 0 0 0 2px rgba(190, 62, 119, 0.1);
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.btn-loading .fa-spinner {
    margin-right: 8px;
}

.form-message {
    text-align: center;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 12px 15px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Mejoras responsive */
@media screen and (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-select {
        padding: 12px;
        font-size: 16px; /* Evita zoom en iOS */
    }
}