/* --- RESET BÁSICO --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

/* --- CONTENEDOR GENERAL --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* --- ENCABEZADO --- */
header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #f3e6f5;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
  height: auto;
  max-width: 200px; /* ajusta según preferencia */
  width: 100%;
  object-fit: contain;
}
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-menu a {
    text-decoration: none;
    color: #ab218e;
    font-weight: bold;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: #d945b5;
}

/* --- HERO --- */
.hero {
    background: linear-gradient(to right, #ffe6f1, #fff0f7);
    text-align: center;
    padding: 80px 20px;
}
.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ab218e;
}
.hero-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
.btn {
    background-color: #ab218e;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn:hover {
    background-color: #d945b5;
}

/* --- SERVICIOS --- */
.servicios {
    padding: 60px 20px;
    background-color: #faf6f9;
}
.servicios h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ab218e;
}
.servicio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
.servicio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}
.servicio-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}
/* --- CONTACTO --- */
.contacto {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}


.talleres {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.talleres .container {
    max-width: 800px;
    margin: 0 auto;
}
.footer {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    color: #666;
    font-size: 0.95em;
}

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