@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --negro: #101010;
    --negro-suave: #1b1b1b;

    --rosa: #dfbcb5;
    --rosa-oscuro: #b98f88;
    --rosa-claro: #f4e6e2;

    --beige: #f7f2ef;
    --beige-claro: #fcf9f7;

    --blanco: #ffffff;

    --gris: #666666;
    --gris-claro: #eeeeee;

    --sombra: 0 15px 40px rgba(0, 0, 0, 0.07);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;

    background: var(--blanco);

    color: var(--negro);

    overflow-x: hidden;
}


img {
    display: block;

    width: 100%;
    max-width: 100%;
}


a {
    transition: 0.3s ease;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    min-height: 75px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(250, 247, 245, 0.98);

    position: sticky;
    top: 0;

    z-index: 1000;

    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.logo {
    display: flex;
    align-items: center;

    gap: 15px;

    color: var(--negro);

    text-decoration: none;
}


.logo-tijera {
    font-size: 36px;

    transform: rotate(-15deg);
}


.logo h1 {
    font-size: 20px;

    letter-spacing: 8px;

    font-weight: 400;
}


.logo p {
    margin-top: 3px;

    font-size: 7px;

    letter-spacing: 6px;

    text-align: center;
}


/* NAVEGACIÓN */

.nav {
    display: flex;
    align-items: center;

    gap: 35px;
}


.nav a {
    position: relative;

    color: var(--negro);

    text-decoration: none;

    font-size: 13px;
}


.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--rosa-oscuro);

    transition: 0.3s;
}


.nav a:hover {
    color: var(--rosa-oscuro);
}


.nav a:hover::after {
    width: 100%;
}


/* BOTÓN HEADER */

.btn-header {
    padding: 13px 24px;

    display: flex;
    align-items: center;

    gap: 10px;

    border-radius: 30px;

    background: var(--negro);

    color: var(--blanco);

    text-decoration: none;

    font-size: 12px;
}


.btn-header:hover {
    background: var(--rosa-oscuro);

    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    min-height: 540px;

    display: grid;

    grid-template-columns: 49% 51%;

    background: var(--negro);
}


/* LADO IZQUIERDO */

.hero-info {
    min-height: 540px;

    padding: 60px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 100% 50%,
            #242424 0%,
            #171717 40%,
            #101010 75%
        );

    color: var(--blanco);
}


.mini-titulo {
    margin-bottom: 25px;

    font-size: 10px;

    letter-spacing: 5px;

    line-height: 1.7;
}


.hero h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(58px, 6vw, 90px);

    line-height: 0.87;

    font-weight: 400;
}


.hero h2 span {
    color: var(--rosa);

    font-style: italic;

    font-weight: 400;
}


.linea {
    width: 55px;
    height: 1px;

    margin: 30px 0;

    background: var(--rosa);
}


.hero-texto {
    max-width: 430px;

    font-size: 16px;

    line-height: 1.7;

    color: #eeeeee;
}


.btn-principal {
    width: fit-content;

    margin-top: 32px;

    padding: 16px 28px;

    display: flex;
    align-items: center;

    gap: 25px;

    border-radius: 30px;

    background: var(--rosa-claro);

    color: var(--negro);

    text-decoration: none;

    font-size: 12px;
}


.btn-principal:hover {
    background: var(--rosa);

    transform: translateY(-2px);
}


.hero-datos {
    margin-top: 45px;

    display: flex;
    flex-wrap: wrap;

    gap: 25px;

    font-size: 11px;

    color: #eeeeee;
}


.hero-datos span {
    display: flex;
    align-items: center;

    gap: 8px;
}


.hero-datos i {
    font-size: 15px;
}


/* =========================================================
   IMAGEN HERO
========================================================= */

.hero-imagen {
    position: relative;

    min-height: 540px;

    overflow: hidden;

    background: #eee9e6;
}


.hero-imagen img {
    position: absolute;

    top: 0;
    left: 0;

    width: 84%;
    height: 100%;

    object-fit: cover;

    object-position: center 35%;

    filter: grayscale(100%);
}


.hero-imagen::after {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;

    left: 65%;

    width: 22%;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(238, 233, 230, 0),
            #eee9e6
        );
}


.frase-hero {
    position: absolute;

    z-index: 5;

    top: 21%;
    right: 2%;

    width: 18%;

    font-family: 'Cormorant Garamond', serif;

    font-size: 31px;

    line-height: 1;

    font-style: italic;

    text-align: center;

    color: #181818;

    transform: rotate(-6deg);
}


.frase-hero span {
    display: block;

    margin-top: 8px;

    font-size: 34px;
}


/* =========================================================
   TÍTULOS GENERALES
========================================================= */

.titulo-seccion {
    margin-bottom: 45px;

    text-align: center;
}


.titulo-seccion h2 {
    font-size: 25px;

    font-weight: 400;

    letter-spacing: 8px;
}


.titulo-seccion p {
    margin-top: 10px;

    font-size: 9px;

    letter-spacing: 5px;

    line-height: 1.6;

    color: #555555;
}


/* =========================================================
   MIS SERVICIOS
========================================================= */

.servicios {
    padding: 75px 6%;

    background: #fffdfc;
}


.servicios-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* TARJETA */

.servicio {
    min-height: 300px;

    padding: 35px 28px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;

    background: var(--blanco);

    border: 1px solid #eee7e3;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);

    transition: 0.3s ease;
}


.servicio:hover {
    transform: translateY(-7px);

    box-shadow: var(--sombra);

    border-color: var(--rosa);
}


.servicio-icono {
    width: 78px;
    height: 78px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--rosa-claro);

    font-size: 29px;

    transition: 0.3s ease;
}


.servicio:hover .servicio-icono {
    background: var(--rosa);

    transform: scale(1.05);
}


.servicio h3 {
    margin-top: 3px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 27px;

    font-weight: 500;
}


.servicio p {
    margin-top: 10px;

    max-width: 280px;

    font-size: 12px;

    line-height: 1.7;

    color: #555555;
}


/* BOTÓN TARJETA */

.btn-servicio {
    margin-top: auto;

    padding-top: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: var(--negro);

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.2px;
}


.btn-servicio i {
    transition: 0.3s;
}


.btn-servicio:hover {
    color: var(--rosa-oscuro);
}


.btn-servicio:hover i {
    transform: translateX(5px);
}


/* =========================================================
   SERVICIOS Y PRECIOS
========================================================= */

.lista-precios {
    padding: 90px 7%;

    background:
        linear-gradient(
            135deg,
            #f7f2ef,
            #fffdfc
        );
}


.categoria-precios {
    max-width: 950px;

    margin: 0 auto 45px;

    padding: 42px 48px;

    background: var(--blanco);

    border: 1px solid #ece4df;

    border-radius: 20px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);

    scroll-margin-top: 110px;
}


/* ENCABEZADO */

.categoria-header {
    padding-bottom: 22px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid #ddd5d0;
}


.categoria-mini {
    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    color: var(--rosa-oscuro);
}


.categoria-header h3 {
    margin-top: 5px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 40px;

    font-weight: 500;

    line-height: 1;
}


.categoria-header > i,
.icono-tijera {
    width: 60px;
    height: 60px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--rosa-claro);

    color: var(--negro);

    font-size: 25px;
}


/* =========================================================
   FILAS DE PRECIOS
========================================================= */

.tabla-precios {
    width: 100%;
}


.fila-precio {
    min-height: 57px;

    padding: 15px 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid #eee9e6;
}


.fila-precio:last-child {
    border-bottom: none;
}


.fila-precio > span,
.fila-precio div > span {
    font-size: 13px;

    line-height: 1.5;

    color: #333333;
}


.fila-precio strong {
    flex-shrink: 0;

    color: var(--negro);

    font-size: 14px;

    font-weight: 600;

    text-align: right;
}


.fila-precio div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}


.fila-precio small {
    max-width: 590px;

    font-size: 11px;

    line-height: 1.6;

    color: #777777;
}


.fila-destacada {
    margin-top: 8px;

    padding: 18px 15px;

    border-radius: 10px;

    background: var(--beige-claro);
}


/* VOLVER */

.volver-servicios {
    margin-top: 25px;

    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #555555;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1px;
}


.volver-servicios:hover {
    color: var(--rosa-oscuro);

    transform: translateY(-2px);
}


/* =========================================================
   SOBRE MÍ
========================================================= */

.sobre-mi {
    min-height: 600px;

    display: grid;

    grid-template-columns: 40% 60%;

    background:
        linear-gradient(
            90deg,
            #efe0da,
            #fbf7f5
        );
}


.sobre-imagen {
    position: relative;

    min-height: 600px;

    overflow: hidden;
}


.sobre-imagen img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.sobre-imagen::after {
    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.12);

    pointer-events: none;
}


.texto-imagen {
    position: absolute;

    z-index: 2;

    left: 11%;
    top: 30%;

    font-family: 'Cormorant Garamond', serif;

    font-size: 38px;

    line-height: 1;

    font-style: italic;

    color: var(--blanco);

    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);

    transform: rotate(-8deg);
}


.sobre-info {
    padding: 60px 8%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.sobre-info h2 {
    margin-bottom: 25px;

    font-size: 25px;

    letter-spacing: 8px;

    font-weight: 400;
}


.sobre-info > p {
    max-width: 700px;

    margin-bottom: 10px;

    font-size: 13px;

    line-height: 1.8;
}


.beneficios {
    margin: 30px 0;

    display: flex;
    flex-wrap: wrap;

    gap: 30px;
}


.beneficios div {
    display: flex;
    align-items: center;

    gap: 12px;
}


.beneficios i {
    font-size: 24px;

    color: var(--rosa-oscuro);
}


.beneficios span {
    font-size: 11px;

    line-height: 1.5;
}


.btn-negro {
    width: fit-content;

    padding: 15px 30px;

    display: inline-flex;
    align-items: center;

    gap: 30px;

    border-radius: 30px;

    background: var(--negro);

    color: var(--blanco);

    text-decoration: none;

    font-size: 11px;
}


.btn-negro:hover {
    background: var(--rosa-oscuro);

    transform: translateY(-2px);
}


/* =========================================================
   GALERÍA
========================================================= */

.galeria {
    padding: 65px 3%;

    background: var(--blanco);
}


.galeria-grid {
    max-width: 1600px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 9px;
}


.galeria-grid img,
.galeria-frase {
    width: 100%;

    height: 230px;
}


.galeria-grid img {
    object-fit: cover;

    transition: 0.4s ease;
}


.galeria-grid img:hover {
    transform: scale(1.025);
}


.galeria-frase {
    padding: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #171717;

    color: var(--blanco);

    font-family: 'Cormorant Garamond', serif;

    font-size: 29px;

    line-height: 1;

    font-style: italic;
}


/* =========================================================
   AGENDA
========================================================= */

.agenda {
    padding: 80px 7%;

    background:
        linear-gradient(
            135deg,
            #fffdfc,
            #f6ebe7
        );
}


.agenda-contenedor {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 38% 62%;

    background: var(--blanco);

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.08);
}


/* INFORMACIÓN */

.agenda-info {
    padding: 60px 45px;

    background:
        linear-gradient(
            145deg,
            #101010,
            #252525
        );

    color: var(--blanco);
}


.agenda-mini {
    margin-bottom: 15px;

    color: var(--rosa);

    font-size: 9px;

    letter-spacing: 5px;
}


.agenda-info h3 {
    margin-bottom: 25px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 45px;

    font-weight: 400;

    line-height: 1;
}


.agenda-info > p {
    margin-bottom: 35px;

    font-size: 13px;

    line-height: 1.7;

    color: #dddddd;
}


.agenda-beneficio {
    margin-top: 22px;

    display: flex;
    align-items: center;

    gap: 15px;

    font-size: 12px;
}


.agenda-beneficio i {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--rosa);

    font-size: 18px;
}


/* =========================================================
   FORMULARIO
========================================================= */

.form-agenda {
    padding: 55px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.campo-agenda {
    display: flex;
    flex-direction: column;

    gap: 8px;
}


.campo-agenda label {
    font-size: 11px;

    font-weight: 500;

    letter-spacing: 1px;
}


.campo-agenda input,
.campo-agenda select,
.campo-agenda textarea {
    width: 100%;

    padding: 15px 17px;

    border: 1px solid #e2d9d5;

    border-radius: 12px;

    background: #fffdfc;

    font-family: 'Montserrat', sans-serif;

    font-size: 12px;

    outline: none;

    transition: 0.3s;
}


.campo-agenda input:focus,
.campo-agenda select:focus,
.campo-agenda textarea:focus {
    border-color: var(--rosa-oscuro);

    box-shadow:
        0 0 0 3px
        rgba(223, 188, 181, 0.20);
}


.campo-agenda textarea {
    min-height: 115px;

    resize: vertical;
}


.campo-completo {
    grid-column: 1 / -1;
}


/* BOTÓN AGENDA */

.btn-agendar {
    grid-column: 1 / -1;

    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    border: none;

    border-radius: 40px;

    background: var(--negro);

    color: var(--blanco);

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}


.btn-agendar:hover {
    background: var(--rosa-oscuro);

    transform: translateY(-2px);
}


/* =========================================================
   RESERVA FINAL
========================================================= */

.reserva {
    min-height: 190px;

    padding: 40px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            rgba(20, 15, 13, 0.82),
            rgba(20, 15, 13, 0.82)
        ),
        url("../img/fondo-reserva.jpg");

    background-size: cover;

    background-position: center;

    color: var(--blanco);
}


.reserva p {
    margin-bottom: 5px;

    font-size: 9px;

    letter-spacing: 5px;
}


.reserva h2 {
    font-family: 'Cormorant Garamond', serif;

    font-size: clamp(42px, 5vw, 58px);

    font-weight: 400;

    line-height: 1;
}


.reserva span {
    display: block;

    margin-top: 7px;

    font-size: 12px;

    color: #e7e7e7;
}


.btn-reserva {
    padding: 18px 28px;

    display: flex;
    align-items: center;

    gap: 18px;

    flex-shrink: 0;

    border-radius: 40px;

    background: var(--rosa);

    color: var(--negro);

    text-decoration: none;

    font-size: 12px;
}


.btn-reserva:hover {
    background: var(--rosa-claro);

    transform: translateY(-3px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 30px 7%;

    background: #111111;

    color: var(--blanco);
}


.footer-superior {
    padding-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid #444444;
}


.footer-logo {
    display: flex;
    align-items: center;

    gap: 15px;
}


.footer-logo > span {
    font-size: 34px;

    transform: rotate(-15deg);
}


.footer-logo h3 {
    font-size: 18px;

    font-weight: 400;

    letter-spacing: 7px;
}


.footer-logo p {
    font-size: 7px;

    letter-spacing: 5px;

    text-align: center;
}


.footer-nav {
    display: flex;
    flex-wrap: wrap;

    gap: 30px;
}


.footer-nav a {
    color: #dddddd;

    text-decoration: none;

    font-size: 11px;
}


.footer-nav a:hover {
    color: var(--rosa);
}


.redes {
    display: flex;

    gap: 20px;
}


.redes a {
    color: var(--blanco);

    font-size: 18px;
}


.redes a:hover {
    color: var(--rosa);

    transform: translateY(-2px);
}


.footer-inferior {
    margin-top: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #aaaaaa;

    font-size: 9px;
}


/* =========================================================
   TABLET GRANDE
========================================================= */

@media (max-width: 1100px) {

    .header {
        padding: 0 4%;
    }


    .nav {
        gap: 18px;
    }


    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .galeria-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .galeria-grid img,
    .galeria-frase {
        height: 240px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 850px) {

    /* HEADER */

    .nav {
        display: none;
    }


    /* HERO */

    .hero {
        grid-template-columns: 1fr;
    }


    .hero-info {
        min-height: auto;

        padding: 70px 8%;
    }


    .hero-imagen {
        min-height: 500px;
    }


    .hero-imagen img {
        width: 82%;
    }


    .frase-hero {
        width: 20%;

        right: 2%;

        font-size: 27px;
    }


    /* SOBRE MÍ */

    .sobre-mi {
        grid-template-columns: 1fr;
    }


    .sobre-imagen {
        min-height: 520px;
    }


    .sobre-info {
        padding: 55px 7%;
    }


    /* AGENDA */

    .agenda-contenedor {
        grid-template-columns: 1fr;
    }


    .agenda-info {
        padding: 50px 40px;
    }


    /* FOOTER */

    .footer-superior {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 650px) {

    /* HEADER */

    .header {
        min-height: 68px;

        padding: 0 20px;
    }


    .logo {
        gap: 10px;
    }


    .logo-tijera {
        font-size: 28px;
    }


    .logo h1 {
        font-size: 14px;

        letter-spacing: 5px;
    }


    .logo p {
        font-size: 6px;

        letter-spacing: 4px;
    }


    .btn-header {
        display: none;
    }


    /* HERO */

    .hero-info {
        padding: 55px 25px;
    }


    .mini-titulo {
        font-size: 9px;
    }


    .hero h2 {
        font-size: 58px;
    }


    .hero-texto {
        font-size: 14px;
    }


    .hero-datos {
        flex-direction: column;

        gap: 15px;
    }


    .hero-imagen {
        min-height: 430px;
    }


    .hero-imagen img {
        width: 79%;

        object-position: center;
    }


    .hero-imagen::after {
        left: 60%;

        width: 26%;
    }


    .frase-hero {
        top: 20%;
        right: 1%;

        width: 22%;

        font-size: 21px;
    }


    .frase-hero span {
        font-size: 28px;
    }


    /* TÍTULOS */

    .titulo-seccion {
        margin-bottom: 35px;
    }


    .titulo-seccion h2 {
        font-size: 20px;

        letter-spacing: 5px;
    }


    .titulo-seccion p {
        font-size: 8px;

        letter-spacing: 2.5px;
    }


    /* SERVICIOS */

    .servicios {
        padding: 60px 20px;
    }


    .servicios-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .servicio {
        min-height: auto;

        padding: 30px 25px;
    }


    .servicio-icono {
        width: 68px;
        height: 68px;

        font-size: 25px;
    }


    .servicio h3 {
        font-size: 25px;
    }


    .servicio p {
        font-size: 11px;
    }


    .btn-servicio {
        margin-top: 20px;

        padding-top: 0;
    }


    /* PRECIOS */

    .lista-precios {
        padding: 60px 18px;
    }


    .categoria-precios {
        margin-bottom: 30px;

        padding: 28px 20px;

        border-radius: 15px;
    }


    .categoria-header {
        gap: 15px;

        align-items: flex-start;
    }


    .categoria-mini {
        font-size: 8px;

        letter-spacing: 2px;
    }


    .categoria-header h3 {
        font-size: 29px;
    }


    .categoria-header > i,
    .icono-tijera {
        width: 48px;
        height: 48px;

        font-size: 21px;
    }


    .fila-precio {
        min-height: auto;

        padding: 14px 0;

        align-items: flex-start;

        gap: 15px;
    }


    .fila-precio > span,
    .fila-precio div > span {
        font-size: 12px;
    }


    .fila-precio strong {
        font-size: 12px;
    }


    .fila-precio small {
        font-size: 10px;
    }


    /* SOBRE MÍ */

    .sobre-imagen {
        min-height: 400px;
    }


    .texto-imagen {
        left: 9%;
        top: 28%;

        font-size: 30px;
    }


    .sobre-info {
        padding: 45px 25px;
    }


    .sobre-info h2 {
        font-size: 21px;

        letter-spacing: 6px;
    }


    .sobre-info > p {
        font-size: 12px;
    }


    .beneficios {
        flex-direction: column;

        gap: 20px;
    }


    /* GALERÍA */

    .galeria {
        padding: 55px 15px;
    }


    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 7px;
    }


    .galeria-grid img,
    .galeria-frase {
        height: 185px;
    }


    .galeria-frase {
        font-size: 23px;
    }


    /* AGENDA */

    .agenda {
        padding: 60px 18px;
    }


    .agenda-info {
        padding: 45px 28px;
    }


    .agenda-info h3 {
        font-size: 38px;
    }


    .form-agenda {
        padding: 35px 22px;

        grid-template-columns: 1fr;
    }


    .campo-completo,
    .btn-agendar {
        grid-column: auto;
    }


    /* RESERVA */

    .reserva {
        padding: 45px 25px;

        flex-direction: column;

        align-items: flex-start;
    }


    .reserva h2 {
        font-size: 43px;
    }


    /* FOOTER */

    .footer {
        padding: 35px 25px;
    }


    .footer-nav {
        justify-content: center;

        gap: 15px 25px;
    }


    .footer-inferior {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   CELULAR PEQUEÑO
========================================================= */

@media (max-width: 400px) {

    .hero h2 {
        font-size: 50px;
    }


    .galeria-grid {
        grid-template-columns: 1fr;
    }


    .galeria-grid img,
    .galeria-frase {
        height: 260px;
    }


    .btn-principal,
    .btn-negro,
    .btn-reserva {
        width: 100%;

        justify-content: center;
    }


    .categoria-precios {
        padding: 25px 17px;
    }


    .categoria-header h3 {
        font-size: 26px;
    }

}