:root {
    --rosa: #FFBBA8;
    --azul: #3A4E70;
    --gris: #606060;
    --blanco: #FFFFFF;
    --radius: 14px;
    --maxw: 1100px;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: var(--blanco);
    color: var(--gris);
}

header {
    background: var(--blanco);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 64px;
    height: auto;
    border-radius: 12px;
}

.brand-name {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: var(--azul);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--gris);
    font-weight: 500;
}

.cta {
    background: var(--rosa);
    color: white;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.cta:hover {
    background: var(--azul);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.hero-text h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: var(--azul);
    margin-bottom: 8px;
}

.hero-text p {
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-img {
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    background: url('img/fachada.jpg') center/cover;
}

/* Secciones */
h2 {
    color: var(--azul);
    font-family: 'Great Vibes', cursive;
    font-size: 40px;
    margin-top: 40px;
    text-align: center;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.card {
    background: #fff;
    text-align: center;
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.card svg {
    width: 32px;
    height: 32px;
    fill: var(--azul);
    margin-bottom: 8px;
}

/* Galería */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    /* antes 200px */
    gap: 12px;
    margin-top: 40px;
}

.gallery img {
    width: 100%;
    height: 260px;
    /* antes 200px */
    object-fit: cover;
    border-radius: var(--radius);
    transition: 0.3s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* Contacto */
.contact {
    background: var(--azul);
    color: white;
    padding: 40px 20px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 60px;
}

.contact h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    margin-bottom: 10px;
}

.contact p {
    margin-bottom: 24px;
}

.contact a {
    background: var(--rosa);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.contact a:hover {
    background: var(--blanco);
    color: var(--azul);
}

footer {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    color: var(--gris);
    border-top: 1px solid #eee;
}

iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-img {
        height: 250px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    nav ul {
        display: none;
    }

    .gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .gallery img {
        height: 180px;
    }
}