/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* VARIABLES */
:root {
    --fondo: #F9F6F2;
    --blanco: #FFFFFF;
    --texto: #2E2E2E;

    --color-principal: #C46A2D;
    --color-secundario: #A55320;

    --cta: #FF6B35;
    --cta-hover: #E85A2A;

    --borde-suave: #E5E0DA;
    --sombra: rgba(0, 0, 0, 0.12);
}

/* GENERAL */
body {
    background-color: var(--fondo);
    color: var(--texto);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* HERO */
h1:first-of-type {
    background-color: var(--color-principal);
    color: white;
    padding: 50px 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(26px, 4vw, 38px);
}

/* SUBTITULO HERO */
h1:first-of-type + p {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    max-width: 600px;
    margin: 10px auto 25px auto;
    color: #5a4a42;
}

/* TITULOS GENERALES */
h2 {
    margin-bottom: 15px;
    color: var(--color-secundario);
    font-size: 22px;
}

/* SECCIONES */
.contenedor {
    background-color: var(--blanco);
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px var(--sombra);
    border: 1px solid var(--borde-suave);
    transition: 0.25s ease;
}

/* HOVER SUAVE (NO SALTA TANTO) */
.contenedor:hover {
    transform: translateY(-2px);
}

/* TEXTOS */
p {
    margin-bottom: 12px;
}

/* LISTAS */
ul {
    margin: 10px 0 15px;
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

/* GALERIA */
.galeria {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 12px;
    max-width: 768px;
    margin: 0 auto 30px auto;
    justify-content: center;
}

/* IMAGENES */
.imagen {
    max-width: 160px;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.25s ease;
    justify-self: center;
}


/* GALERIA 2*/
.galeria2 {
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 12px;
    max-width: 768px;
    margin: 0 auto 30px auto;
    justify-content: center;
}


/* HOVER IMAGEN */
.imagen:hover {
    transform: scale(1.04);
}

/* BOTON ANIMACION */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,107,53,0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,107,53,0);
    }
    100% {
        transform: scale(1);
    }
}

/* BOTON */
.boton {
    background-color: var(--cta);
    color: white;
    padding: 14px 26px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 30px auto;
    text-align: center;
    transition: 0.2s ease;
    animation: pulse 1.6s infinite;
    box-shadow: 0 5px 15px var(--sombra);
}

/* HOVER BOTON */
.boton:hover {
    background-color: var(--cta-hover);
    transform: scale(1.05);
}

/* CLICK */
.boton:active {
    transform: scale(0.97);
}

/* ACCESIBILIDAD REAL */
.boton:focus {
    outline: none;
}

.boton:focus-visible {
    outline: 3px solid rgba(255,107,53,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {

    body {
        padding: 15px;
    }

    h1:first-of-type {
        padding: 30px 15px;
        font-size: clamp(22px, 5vw, 30px);
    }

    div {
        padding: 20px;
    }

    .galeria {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 12px;
        justify-content: center;
    }

    .galeria2 {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 12px;
        justify-content: center;
    }

    .boton {
        padding: 12px 18px;
        font-size: 14px;
    }
}