/* =========================================================
   CLÍNICA Y ÓPTICA VISUAL VALENTINO'S
   STYLESHEET PRINCIPAL
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --navy: #12385F;
    --navy-dark: #071522;
    --navy-light: #12385F;

    --gold: #D7A648;
    --gold-light: #D7A648;
    --gold-dark: #A47726;

    --dark: #202223;
    --dark-soft: #202223;

    --cream: #FFFFFF;
    --cream-dark: #F8F8F0;
    --white: #FFFFFF;

    --text: #12385F;
    --text-light: #12385F;

    --border: rgba(18, 56, 95, 0.12);

    --shadow:
        0 25px 70px rgba(18, 56, 95, 0.12);

    --shadow-soft:
        0 12px 35px rgba(18, 56, 95, 0.08);

    --radius: 28px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.container {
    width: min(1420px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(18, 56, 95, 0.97);

    border-bottom:
        1px solid rgba(215, 166, 72, 0.25);

    backdrop-filter: blur(18px);
}

.nav-container {
    min-height: 132px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}


/* LOGO */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo {
    width: 215px;
    height: 118px;

    object-fit: contain;

    background: #FFFFFF;

    border-radius: 4px;

    padding: 3px;
}


/* NAVEGACIÓN */

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 46px;
}

.nav a {
    position: relative;

    color: #FFFFFF;

    font-size: 17px;
    font-weight: 650;

    transition: 0.3s ease;
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--gold-light);
}

.nav a:hover::after {
    width: 100%;
}


/* BOTÓN MENÚ MÓVIL */

.menu-btn {
    display: none;

    border: 0;
    background: transparent;

    color: white;

    font-size: 30px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: calc(100vh - 125px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(215, 166, 72, 0.18),
            transparent 35%
        ),
        linear-gradient(
            115deg,
            #12385F 0%,
            #12385F 48%,
            #12385F 100%
        );

    border-bottom:
        1px solid rgba(215, 166, 72, 0.25);
}


/* DECORACIÓN */

.hero-decoration {
    position: absolute;

    border:
        1px solid rgba(215, 166, 72, 0.22);

    border-radius: 50%;

    pointer-events: none;
}

.hero-decoration-one {
    width: 440px;
    height: 440px;

    right: -150px;
    top: -110px;
}

.hero-decoration-two {
    width: 230px;
    height: 230px;

    right: 5%;
    top: 8%;
}


/* GRID */

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(550px, 1.1fr);

    align-items: center;

    gap: 90px;

    padding-top: 75px;
    padding-bottom: 75px;
}


/* CONTENIDO HERO */

.hero-content {
    max-width: 680px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--gold-light);

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 4px;
}

.hero h1 {
    max-width: 650px;

    color: #FFFFFF;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(60px, 5.7vw, 96px);

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -3px;

    margin-bottom: 32px;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);

    margin-top: 10px;
}

.hero-description {
    max-width: 630px;

    color: #FFFFFF;

    font-size: 20px;

    line-height: 1.85;

    margin-bottom: 35px;
}


/* BOTONES */

.hero-buttons {
    display: flex;
    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 50px;
}

.btn {
    min-height: 58px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 34px;

    border-radius: 100px;

    font-size: 16px;
    font-weight: 750;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    color: white;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    box-shadow:
        0 14px 30px rgba(18, 56, 95, 0.28);
}

.btn-primary:hover {
    box-shadow:
        0 18px 38px rgba(18, 56, 95, 0.38);
}

.btn-secondary {
    color: #FFFFFF;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
    background:
        rgba(255, 255, 255, 0.08);
}


/* BENEFICIOS HERO */

.hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

    padding-top: 30px;

    border-top:
        1px solid rgba(255, 255, 255, 0.1);
}

.benefit {
    display: flex;

    gap: 13px;

    align-items: flex-start;
}

.benefit-number {
    color: var(--gold);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 4px;
}

.benefit strong {
    display: block;

    color: #FFFFFF;

    font-size: 14px;

    margin-bottom: 3px;
}

.benefit small {
    display: block;

    color: #FFFFFF;

    font-size: 12px;
}


/* =========================================================
   HERO IMAGEN
========================================================= */

.hero-visual {
    position: relative;

    width: 100%;

    max-width: 750px;

    justify-self: end;
}

.hero-image-frame {
    position: relative;

    width: 100%;

    padding: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.16),
            rgba(255,255,255,0.03)
        );

    border:
        1px solid rgba(255,255,255,0.1);

    border-radius: 42px;

    box-shadow:
        0 40px 90px rgba(18, 56, 95,0.32);
}

.hero-image {
    width: 100%;

    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    object-position: center;

    border-radius: 32px;
}


/* TARJETA SOBRE IMAGEN */

.hero-floating-card {
    display: none !important;

    position: absolute;

    left: -35px;
    bottom: 35px;

    width: 330px;

    padding: 26px 30px;

    border-left:
        4px solid var(--gold);

    border-radius: 20px;

    background:
        rgba(18, 56, 95, 0.95);

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(18, 56, 95,0.35);
}

.hero-floating-card span {
    display: block;

    color: var(--gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.hero-floating-card strong {
    display: block;

    color: white;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    line-height: 1.15;

    margin-bottom: 10px;
}

.hero-floating-card small {
    color: #FFFFFF;
}


/* =========================================================
   SECCIONES GENERALES
========================================================= */

.section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;

    color: var(--gold-dark);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 3px;

    margin-bottom: 16px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 50px;

    margin-bottom: 65px;
}

.section-heading h2 {
    max-width: 720px;

    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(42px, 4vw, 65px);

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading h2 span {
    color: var(--gold-dark);
}

.section-heading > p {
    max-width: 450px;

    color: var(--text-light);

    font-size: 17px;

    line-height: 1.8;
}

.section-heading.centered {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    margin-bottom: 65px;

    display: block;

    text-align: center;
}

.section-heading.centered h2 {
    margin: 0 auto 25px;
}

.section-heading.centered > p {
    margin: 0 auto;

    max-width: 700px;
}


/* =========================================================
   NOSOTROS
========================================================= */

.about-section {
    background: #FFFFFF;
}

.about-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}

.about-card {
    min-height: 330px;

    position: relative;

    padding: 45px 38px;

    border:
        1px solid rgba(18, 56, 95,0.1);

    border-radius: 24px;

    background: white;

    box-shadow: var(--shadow-soft);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.about-card.featured {
    background:
        linear-gradient(
            145deg,
            var(--navy-dark),
            var(--navy)
        );

    color: white;
}

.about-number {
    display: block;

    color: var(--gold);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 2px;

    margin-bottom: 50px;
}

.about-card h3 {
    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 29px;

    line-height: 1.15;

    margin-bottom: 18px;
}

.about-card.featured h3 {
    color: white;
}

.about-card p {
    color: #12385F;

    line-height: 1.8;
}

.about-card.featured p {
    color: #FFFFFF;
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-section {
    background: white;
}

.service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid var(--border);

    border-left:
        1px solid var(--border);
}

.service-card {
    position: relative;

    min-height: 310px;

    padding: 42px 36px;

    background: white;

    border-right:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover {
    z-index: 2;

    background: #FFFFFF;

    transform: translateY(-5px);
}

.service-number {
    display: block;

    color: var(--gold);

    font-size: 13px;
    font-weight: 850;

    letter-spacing: 2px;

    margin-bottom: 55px;
}

.service-card h3 {
    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 28px;

    margin-bottom: 14px;
}

.service-card p {
    color: #12385F;

    line-height: 1.75;
}


/* =========================================================
   ARMAZONES
========================================================= */

.frames-section {
    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #FFFFFF
        );
}

.frames-showcase {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    min-height: 610px;

    overflow: hidden;

    border-radius: 32px;

    background: white;

    box-shadow: var(--shadow);
}

.frames-photo {
    overflow: hidden;
}

.frames-photo img {
    width: 100%;
    height: 100%;

    min-height: 610px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.frames-showcase:hover .frames-photo img {
    transform: scale(1.025);
}

.frames-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 70px;

    background:
        linear-gradient(
            145deg,
            var(--navy-dark),
            #12385F
        );
}

.frames-content .section-label {
    color: var(--gold-light);
}

.frames-content h3 {
    color: white;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(38px, 4vw, 58px);

    font-weight: 500;

    line-height: 1.05;

    margin-bottom: 25px;
}

.frames-content > p {
    color: #FFFFFF;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 30px;
}

.frames-features {
    display: grid;

    gap: 12px;

    margin-bottom: 35px;
}

.frames-features div {
    color: white;

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 15px;
}

.frames-features span {
    color: var(--gold-light);
}

.frames-content .btn {
    align-self: flex-start;

    background: var(--gold);

    color: var(--navy-dark);
}


/* =========================================================
   PROMOCIONES
========================================================= */

.promotions-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(215, 166, 72,0.14),
            transparent 30%
        ),
        #12385F;

    color: white;
}

.promotions-heading h2 {
    color: white;
}

.promotions-heading h2 span {
    color: var(--gold-light);
}

.promotions-heading > p {
    color: #FFFFFF;
}

.promotions-section .section-label {
    color: var(--gold);
}

.promo-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 24px;
}

.promo-card {
    min-height: 420px;

    padding: 50px;

    display: flex;
    flex-direction: column;

    justify-content: flex-end;

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.015)
        );
}

.promo-main {
    position: relative;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #12385F,
            #12385F
        );
}

.promo-main::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -100px;
    top: -100px;

    border:
        1px solid rgba(215, 166, 72,0.3);

    border-radius: 50%;
}

.promo-tag {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 850;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.promo-big-number {
    position: absolute;

    top: 25px;
    right: 35px;

    color:
        rgba(255,255,255,0.07);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 115px;

    line-height: 1;
}

.promo-card h3 {
    position: relative;
    z-index: 2;

    max-width: 650px;

    color: white;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(30px, 3vw, 44px);

    font-weight: 500;

    line-height: 1.12;

    margin-bottom: 18px;
}

.promo-card p {
    position: relative;
    z-index: 2;

    color: #FFFFFF;

    max-width: 600px;

    line-height: 1.8;
}

.loading-line {
    width: 100%;
    height: 3px;

    margin: 35px 0 15px;

    background:
        rgba(255,255,255,0.1);
}

.loading-line span {
    display: block;

    width: 70%;
    height: 100%;

    background: var(--gold);
}

.coming-soon {
    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 3px;
}


/* =========================================================
   CITAS
========================================================= */

.appointment-section {
    background: #FFFFFF;
}

.appointment-grid {
    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 90px;

    align-items: center;
}

.appointment-info h2 {
    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(48px, 4.5vw, 68px);

    font-weight: 500;

    line-height: 1.05;

    margin-bottom: 25px;
}

.appointment-info h2 span {
    display: block;

    color: var(--gold-dark);
}

.appointment-info > p {
    max-width: 550px;

    color: #12385F;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 45px;
}

.appointment-detail {
    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-top:
        1px solid rgba(18, 56, 95,0.12);
}

.appointment-detail > span {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 850;
}

.appointment-detail strong {
    display: block;

    color: var(--navy-dark);

    margin-bottom: 3px;
}

.appointment-detail small {
    color: #12385F;
}


/* FORMULARIO */

.appointment-form {
    padding: 55px;

    border-radius: 30px;

    background: white;

    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 35px;
}

.form-header span {
    display: block;

    color: var(--gold-dark);

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 3px;

    margin-bottom: 8px;
}

.form-header h3 {
    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 38px;

    font-weight: 500;
}

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    color: #12385F;

    font-size: 13px;
    font-weight: 750;

    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border:
        1px solid #12385F;

    border-radius: 12px;

    background: #FFFFFF;

    color: var(--text);

    outline: none;

    padding: 15px 16px;

    transition:
        border 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    background: white;

    box-shadow:
        0 0 0 4px rgba(215, 166, 72,0.1);
}

.form-button {
    width: 100%;

    border: 0;

    margin-top: 5px;
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    gap: 24px;
}

.contact-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 40px;

    border-radius: 24px;

    border:
        1px solid var(--border);

    background: #FFFFFF;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-soft);
}

.contact-number {
    color: var(--gold-dark);

    font-size: 12px;
    font-weight: 850;

    margin-bottom: auto;
}

.contact-card small {
    color: #12385F;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.contact-card a {
    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(20px, 2vw, 30px);

    word-break: break-word;
}

.contact-card p {
    max-width: 700px;

    color: var(--navy-dark);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(20px, 2vw, 29px);

    line-height: 1.35;
}

.contact-location {
    background:
        linear-gradient(
            135deg,
            var(--navy-dark),
            var(--navy)
        );
}

.contact-location .contact-number {
    color: var(--gold-light);
}

.contact-location small {
    color: #FFFFFF;
}

.contact-location p {
    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #12385F;

    color: white;

    padding-top: 75px;
}

.footer-main {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 70px;

    padding-bottom: 65px;
}

.footer-logo {
    width: 150px;

    background: white;

    padding: 4px;

    margin-bottom: 25px;
}

.footer-brand-area p {
    max-width: 300px;

    color: #FFFFFF;

    line-height: 1.7;
}

.footer-navigation {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-navigation strong {
    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.footer-navigation a {
    color: #FFFFFF;

    transition: color 0.2s ease;
}

.footer-navigation a:hover {
    color: white;
}

.footer-bottom {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid rgba(255,255,255,0.08);

    color: #FFFFFF;

    font-size: 13px;
}

.footer-bottom span {
    color: var(--gold);
}


/* =========================================================
   SCROLL OFFSET
========================================================= */

section {
    scroll-margin-top: 132px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .nav {
        gap: 22px;
    }

    .nav a {
        font-size: 15px;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;

        gap: 45px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero-image {
        height: auto;
        aspect-ratio: 3 / 2;
    }

    .hero-floating-card {
        left: -15px;

        width: 280px;
    }

    .about-grid,
    .service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .frames-content {
        padding: 45px;
    }

    .appointment-grid {
        gap: 50px;
    }

}


/* =========================================================
   MÓVIL / TABLET
========================================================= */

@media (max-width: 850px) {

    .container {
        width: min(92%, 700px);
    }

    .nav-container {
        min-height: 104px;
    }

    .header-logo {
        width: 145px;
        height: 90px;
    }

    .menu-btn {
        display: block;
    }

    .nav {
        position: absolute;

        top: 104px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 15px 5% 25px;

        background: #12385F;

        border-top:
            1px solid rgba(255,255,255,0.08);

        box-shadow:
            0 20px 30px rgba(18, 56, 95,0.25);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 0;

        border-bottom:
            1px solid rgba(255,255,255,0.06);
    }

    .nav a::after {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        padding-top: 65px;
        padding-bottom: 75px;
    }

    .hero-content {
        max-width: none;
    }

    .hero h1 {
        max-width: 650px;

        font-size:
            clamp(54px, 12vw, 78px);
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-benefits {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .hero-visual {
        max-width: 650px;

        justify-self: center;
    }

    .hero-image {
        height: auto;
        aspect-ratio: 3 / 2;
    }


    /* SECCIONES */

    .section {
        padding: 85px 0;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .about-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }


    /* ARMAZONES */

    .frames-showcase {
        grid-template-columns: 1fr;
    }

    .frames-photo img {
        min-height: 450px;
        height: 450px;
    }


    /* PROMOS */

    .promo-grid {
        grid-template-columns: 1fr;
    }


    /* CITAS */

    .appointment-grid {
        grid-template-columns: 1fr;
    }


    /* CONTACTO */

    .contact-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand-area {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   CELULARES
========================================================= */

@media (max-width: 560px) {

    .nav-container {
        min-height: 94px;
    }

    .header-logo {
        width: 125px;
        height: 80px;
    }

    .nav {
        top: 94px;
    }


    /* HERO */

    .hero-grid {
        padding-top: 50px;
    }

    .eyebrow {
        font-size: 11px;

        letter-spacing: 2.5px;
    }

    .hero h1 {
        font-size: 51px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        display: grid;

        grid-template-columns: 1fr;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-image-frame {
        padding: 7px;

        border-radius: 25px;
    }

    .hero-image {
        height: auto;
        aspect-ratio: 3 / 2;

        border-radius: 19px;
    }

    .hero-floating-card {
        position: relative;

        left: auto;
        bottom: auto;

        width: calc(100% - 30px);

        margin:
            -55px auto 0;

        padding: 22px;

        border-radius: 18px;
    }


    /* TITULOS */

    .section-heading h2,
    .appointment-info h2 {
        font-size: 42px;

        letter-spacing: -1.5px;
    }


    /* CARDS */

    .about-card,
    .service-card {
        min-height: auto;

        padding: 35px 28px;
    }

    .about-number,
    .service-number {
        margin-bottom: 35px;
    }


    /* ARMAZONES */

    .frames-photo img {
        min-height: 360px;
        height: 360px;
    }

    .frames-content {
        padding: 42px 28px;
    }

    .frames-content h3 {
        font-size: 39px;
    }


    /* PROMOCIONES */

    .promo-card {
        min-height: 370px;

        padding: 35px 28px;
    }

    .promo-big-number {
        font-size: 80px;
    }


    /* FORMULARIO */

    .appointment-form {
        padding: 35px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* CONTACTO */

    .contact-card {
        padding: 30px 25px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-brand-area {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;

        justify-content: center;
        align-items: flex-start;

        padding: 25px 0;
    }

}