/* ===== Fuentes personalizadas ===== */
@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Light.woff2') format('woff2'),
       url('../fonts/GlacialIndifference-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Regular.woff2') format('woff2'),
       url('../fonts/GlacialIndifference-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Glacial Indifference';
  src: url('../fonts/GlacialIndifference-Bold.woff2') format('woff2'),
       url('../fonts/GlacialIndifference-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== Global ===== */
body {
    font-family: 'Glacial Indifference', Montserrat, sans-serif;
    background-color: #faf8f6;
    color: #222;
    margin: 0;
    padding: 0;
    text-align: center;
}

p {
    font-size: 1rem;
    color: #555;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* ===== Header / Portada ===== */
header.portada {
    padding: 80px 20px;
    background-color: #faf8f6;
}

.portada-texto h1 {
    font-size: 3rem;
    font-weight: 400; /* Se aplicará la Light */
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.portada-texto h2 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.portada-texto p {
    margin-bottom: 40px;
}

/* ===== Botones ===== */
.btn {
    display: block;
    max-width: 350px;
    margin: 10px auto;
    padding: 15px;
    background-color: #000;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border-radius: 5px;
}

.btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* ===== Secciones ===== */
section {
    padding: 60px 20px;
    border-top: 1px solid #eee;
}

section h2 {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* ===== Servicios ===== */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    background-color: #b36a75;
    color: white;
}

/* ===== Galería ===== */
.gallery img {
    width: 100%;
    border-radius: 10px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    header.portada {
        padding: 60px 15px;
    }

    .portada-texto h1 {
        font-size: 2.2rem;
    }

    .portada-texto h2 {
        font-size: 1rem;
    }

    .services {
        flex-direction: column;
        gap: 15px;
    }

    .service {
        width: 90%;
    }
}
