/* Reset básico */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Fuente */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #faf6f0;
    color: #222;
    line-height: 1.6;
}

header {
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 5vw;
}

.logo {
    font-size: 2rem;
    color: #e86a92;
    font-weight: bold;
    letter-spacing: 2px;
}

nav a {
    color: #555;
    margin-left: 2vw;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: #e86a92;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(232,106,146,0.6),rgba(244,220,225,0.7)), url('https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
    color: #fff;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-text {
    background: rgba(0,0,0,0.3);
    padding: 2rem 3vw;
    border-radius: 15px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.btn {
    background: #e86a92;
    color: #fff;
    padding: 0.8rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(232,106,146,0.15);
    transition: background 0.2s;
}
.btn:hover {
    background: #d1537d;
}

/* Servicios */
.servicios {
    padding: 4rem 7vw 3rem 7vw;
    background: #fff;
    text-align: center;
}
.servicios h2 {
    color: #e86a92;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.servicios-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.servicio-card {
    background: #f9eef2;
    border-radius: 18px;
    box-shadow: 0 4px 14px rgba(232,106,146,0.06);
    padding: 1.2rem;
    width: 250px;
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicio-card:hover {
    transform: translateY(-8px) scale(1.025);
    box-shadow: 0 6px 18px rgba(232,106,146,0.16);
}
.servicio-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}
.servicio-card h3 {
    margin-bottom: 0.7rem;
    color: #d1537d;
    font-size: 1.2rem;
}
.servicio-card p {
    font-size: 1rem;
}

/* Galería */
.galeria {
    padding: 4rem 7vw;
    background: #faf6f0;
    text-align: center;
}
.galeria h2 {
    color: #e86a92;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.galeria-fotos {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.galeria-fotos img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.12s;
}
.galeria-fotos img:hover {
    transform: scale(1.07);
}

/* Sobre Nosotros */
.sobre-nosotros {
    background: #fff;
    padding: 3rem 7vw;
    text-align: center;
}
.sobre-nosotros h2 {
    color: #e86a92;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Contacto */
.contacto {
    padding: 4rem 7vw 3rem 7vw;
    background: #faf6f0;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}
.contacto h2 {
    color: #e86a92;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}
.contacto form {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(232,106,146,0.08);
    display: flex;
    flex-direction: column;
    padding: 2rem 2vw;
    min-width: 270px;
    max-width: 350px;
    gap: 1rem;
    flex: 1;
}
.contacto form input,
.contacto form textarea {
    padding: 0.7rem;
    border: 1px solid #e8c1ce;
    border-radius: 7px;
    font-size: 1rem;
    resize: none;
}
.contacto form button {
    background: #e86a92;
    color: #fff;
    border: none;
    padding: 0.8rem 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.contacto form button:hover {
    background: #d1537d;
}
.contacto-info {
    flex: 1;
    min-width: 240px;
    font-size: 1rem;
    color: #444;
    padding: 1.2rem 1.5rem;
}
.contacto-info p {
    margin-bottom: 0.8rem;
}
.contacto-info a {
    color: #e86a92;
    text-decoration: underline;
}

/* Footer */
footer {
    background: #e86a92;
    color: #fff;
    text-align: center;
    padding: 1rem;
    letter-spacing: 1px;
    font-size: 1rem;
}

/* Responsivo */
@media (max-width: 950px) {
    .servicios-lista, .galeria-fotos {
        flex-direction: column;
        align-items: center;
    }
    .contacto {
        flex-direction: column;
        align-items: stretch;
    }
    header {
        flex-direction: column;
        padding: 0.8rem 3vw;
    }
    .logo {
        margin-bottom: 0.4rem;
    }
}
