/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background:
        var(--color-background, #ffffff);

    color:
        var(--color-text, #1f2937);

    font-family:
        var(--font-body, Arial, sans-serif);

    line-height: 1.6;
}

body.nav-open,
body.opinion-modal-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

section {
    scroll-margin-top: 80px;
}


/* =========================================================
   CONTENEDOR
========================================================= */

.container {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;
}


/* =========================================================
   NAVBAR
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
        rgba(17, 24, 39, .96);

    backdrop-filter:
        blur(12px);

    box-shadow:
        0 4px 20px
        rgba(0, 0, 0, .12);
}

.navbar-container {
    width:
        min(
            1240px,
            calc(100% - 36px)
        );

    min-height: 76px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 24px;
}


/* MARCA */

.site-brand {
    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 0;

    color: #ffffff;

    text-decoration: none;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 18px;

    font-weight: 800;
}

.site-logo {
    max-width: 180px;

    height: 54px;

    object-fit: contain;
}

.site-logo-placeholder {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        var(
            --color-primary,
            #dc2626
        );
}


/* MENÚ */

.site-nav {
    display: flex;

    align-items: center;

    gap: 5px;
}

.site-nav a {
    padding:
        10px
        11px;

    border-radius: 8px;

    color: #d1d5db;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
    background:
        rgba(255, 255, 255, .08);

    color: #ffffff;
}


/* ACCIONES */

.navbar-actions {
    display: flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;
}

.navbar-phone,
.navbar-whatsapp {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    padding:
        10px
        14px;

    border-radius:
        var(
            --button-radius,
            10px
        );

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;
}

.navbar-phone {
    background:
        rgba(255,255,255,.10);

    color: #ffffff;
}

.navbar-whatsapp {
    background: #25D366;

    color: #ffffff;
}

.navbar-toggle {
    display: none;

    width: 43px;
    height: 43px;

    border:
        1px solid
        rgba(255,255,255,.15);

    border-radius: 9px;

    background:
        rgba(255,255,255,.08);

    color: #ffffff;

    cursor: pointer;

    font-size: 21px;
}

.nav-overlay {
    position: fixed;

    inset: 0;

    z-index: 899;

    display: none;

    background:
        rgba(0,0,0,.60);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 92vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding:
        140px 0
        80px;

    background:
        var(
            --color-secondary,
            #111827
        );

    color: #ffffff;
}

.hero-background {
    position: absolute;

    inset: 0;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.68) 50%,
            rgba(0,0,0,.42) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 760px;
}

.hero-eyebrow {
    display: inline-flex;

    padding:
        7px
        12px;

    margin-bottom: 20px;

    border:
        1px solid
        rgba(255,255,255,.18);

    border-radius: 100px;

    background:
        rgba(255,255,255,.08);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.hero h1 {
    margin:
        0
        0
        22px;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size:
        clamp(
            44px,
            7vw,
            78px
        );

    line-height: 1.03;
}

.hero-description {
    max-width: 680px;

    margin:
        0
        0
        32px;

    color:
        rgba(255,255,255,.83);

    font-size: 18px;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   BOTONES
========================================================= */

.site-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding:
        14px
        21px;

    border-radius:
        var(
            --button-radius,
            10px
        );

    text-decoration: none;

    font-weight: 800;

    transition:
        transform .2s ease,
        filter .2s ease,
        background .2s ease;
}

.site-button:hover {
    transform:
        translateY(-2px);
}

.button-primary {
    background:
        var(
            --color-primary,
            #dc2626
        );

    color: #ffffff;
}

.button-primary:hover {
    filter: brightness(.94);
}

.button-whatsapp {
    background: #25D366;

    color: #ffffff;
}

.button-whatsapp:hover {
    background: #20bd5b;
}

.button-light {
    background: #ffffff;

    color:
        var(
            --color-secondary,
            #111827
        );
}


/* =========================================================
   SECCIONES
========================================================= */

.section {
    padding:
        90px 0;
}

.section-muted {
    background: #f8fafc;
}

.section-dark {
    background:
        var(
            --color-secondary,
            #111827
        );

    color: #ffffff;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 38px;
}

.section-heading.center {
    margin:
        0 auto
        42px;

    text-align: center;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 10px;

    color:
        var(
            --color-primary,
            #dc2626
        );

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;
}

.section-heading h2 {
    margin:
        0
        0
        12px;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size:
        clamp(
            30px,
            4vw,
            46px
        );

    line-height: 1.15;
}

.section-heading p {
    margin: 0;

    color: #6b7280;
}

.section-dark
.section-heading p {
    color:
        rgba(255,255,255,.72);
}


/* =========================================================
   SERVICIOS
========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 22px;
}

.service-card {
    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        #e5e7eb;

    border-radius:
        var(
            --card-radius,
            16px
        );

    box-shadow:
        0 12px 30px
        rgba(0,0,0,.06);

    transition: .25s ease;
}

.service-card:hover {
    transform:
        translateY(-5px);

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.10);
}

.service-image {
    height: 200px;

    overflow: hidden;

    background: #f3f4f6;
}

.service-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.service-icon-placeholder {
    height: 200px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(
            --color-secondary,
            #111827
        );

    color: #ffffff;

    font-size: 50px;
}

.service-content {
    padding: 22px;
}

.service-content h3 {
    margin:
        0
        0
        8px;

    color: #111827;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 21px;
}

.service-content p {
    margin:
        0
        0
        18px;

    color: #6b7280;

    font-size: 14px;
}


/* =========================================================
   PROMOCIONES
========================================================= */

.promotions-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 22px;
}

.promotion-card {
    position: relative;

    min-height: 320px;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    border-radius:
        var(
            --card-radius,
            16px
        );

    background: #111827;

    color: #ffffff;
}

.promotion-card img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.promotion-card::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.90),
            rgba(0,0,0,.10)
        );
}

.promotion-content {
    position: relative;

    z-index: 2;

    padding: 25px;
}

.promotion-content h3 {
    margin:
        0
        0
        8px;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 27px;
}

.promotion-content p {
    color:
        rgba(255,255,255,.80);
}


/* =========================================================
   NOSOTROS
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 55px;

    align-items: center;
}

.about-image {
    min-height: 430px;

    overflow: hidden;

    border-radius:
        var(
            --card-radius,
            16px
        );

    background:
        var(
            --color-secondary,
            #111827
        );
}

.about-image img {
    width: 100%;
    height: 100%;

    min-height: 430px;

    display: block;

    object-fit: cover;
}

.about-content h2 {
    margin:
        0
        0
        18px;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size:
        clamp(
            31px,
            4vw,
            45px
        );
}

.about-content p {
    color: #6b7280;

    white-space: pre-line;
}


/* =========================================================
   GALERÍA
========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 15px;
}

.gallery-item {
    position: relative;

    height: 260px;

    overflow: hidden;

    border-radius:
        var(
            --card-radius,
            16px
        );

    background: #e5e7eb;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .35s ease;
}

.gallery-item:hover img {
    transform:
        scale(1.06);
}

.gallery-caption {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding:
        45px
        17px
        16px;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.78)
        );

    color: #ffffff;
}

.gallery-caption strong {
    display: block;
}

.gallery-caption span {
    display: block;

    margin-top: 3px;

    font-size: 11px;

    opacity: .8;
}


/* =========================================================
   TESTIMONIOS
========================================================= */

.testimonials-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0,1fr)
        );

    gap: 20px;
}

.testimonial-card {
    padding: 24px;

    border:
        1px solid
        #e5e7eb;

    border-radius:
        var(
            --card-radius,
            16px
        );

    background: #ffffff;

    box-shadow:
        0 10px 25px
        rgba(15,23,42,.04);
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-card > p {
    min-height: 100px;

    color: #4b5563;

    font-size: 14px;
}

.testimonial-user {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-top: 20px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        var(
            --color-primary,
            #dc2626
        );

    color: #ffffff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-user small {
    display: block;

    margin-top: 2px;

    color: #6b7280;
}


/* =========================================================
   MENSAJES OPINIÓN
========================================================= */

.opinion-message {
    width:
        min(
            700px,
            100%
        );

    margin:
        0 auto
        30px;

    padding:
        16px
        18px;

    border-radius: 11px;

    text-align: center;

    font-size: 14px;

    font-weight: 600;
}

.opinion-message.success {
    background: #dcfce7;

    border:
        1px solid
        #bbf7d0;

    color: #166534;
}

.opinion-message.error {
    background: #fee2e2;

    border:
        1px solid
        #fecaca;

    color: #991b1b;
}


/* =========================================================
   MODAL OPINIÓN
========================================================= */

.opinion-modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 20px;
}

.opinion-modal.open {
    display: flex;
}

.opinion-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(15,23,42,.78);

    backdrop-filter:
        blur(5px);
}

.opinion-modal-box {
    position: relative;

    z-index: 2;

    width:
        min(
            570px,
            100%
        );

    max-height:
        calc(
            100vh - 40px
        );

    overflow-y: auto;

    padding: 34px;

    border:
        1px solid
        rgba(255,255,255,.3);

    border-radius:
        var(
            --card-radius,
            18px
        );

    background: #ffffff;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.32);

    animation:
        opinionModalIn
        .22s ease;
}

@keyframes opinionModalIn {

    from {
        opacity: 0;

        transform:
            translateY(15px)
            scale(.98);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}

.opinion-modal-close {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 39px;
    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 10px;

    background: #f3f4f6;

    color: #374151;

    cursor: pointer;

    font-size: 16px;

    transition: .2s ease;
}

.opinion-modal-close:hover {
    background: #e5e7eb;

    color: #111827;
}

.opinion-modal-header {
    padding-right: 45px;

    margin-bottom: 25px;
}

.opinion-modal-header h2 {
    margin:
        3px
        0
        8px;

    color: #111827;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 30px;

    line-height: 1.2;
}

.opinion-modal-header p {
    margin: 0;

    color: #6b7280;
}


/* FORMULARIO */

.opinion-form-group {
    margin-bottom: 18px;
}

.opinion-form-group > label {
    display: block;

    margin-bottom: 7px;

    color: #374151;

    font-size: 13px;

    font-weight: 700;
}

.opinion-form-group > label span {
    color: #9ca3af;

    font-weight: 400;
}

.opinion-form input,
.opinion-form select,
.opinion-form textarea {
    width: 100%;

    padding:
        12px
        13px;

    border:
        1px solid
        #d1d5db;

    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: #111827;

    font-size: 14px;

    transition:
        border .2s ease,
        box-shadow .2s ease;
}

.opinion-form input:focus,
.opinion-form select:focus,
.opinion-form textarea:focus {
    border-color:
        var(
            --color-primary,
            #dc2626
        );

    box-shadow:
        0 0 0 3px
        rgba(220,38,38,.08);
}

.opinion-form textarea {
    min-height: 120px;

    resize: vertical;
}

.opinion-submit {
    width: 100%;

    border: 0;

    cursor: pointer;
}

.opinion-privacy {
    margin:
        12px
        0
        0;

    color: #9ca3af;

    text-align: center;

    font-size: 11px;
}


/* =========================================================
   ESTRELLAS DEL FORMULARIO
========================================================= */

.rating-selector {
    display: inline-flex;

    flex-direction: row-reverse;

    justify-content: flex-end;

    gap: 4px;
}

.rating-selector input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.rating-selector label {
    cursor: pointer;

    color: #d1d5db;

    font-size: 34px;

    line-height: 1;

    transition:
        color .15s ease,
        transform .15s ease;
}

.rating-selector label:hover {
    transform:
        scale(1.08);
}

.rating-selector label:hover,
.rating-selector label:hover ~ label,
.rating-selector input:checked ~ label {
    color: #f59e0b;
}


/* =========================================================
   UBICACIÓN
========================================================= */

.location-section {
    padding:
        80px 0;

    background: #ffffff;
}

.location-section
.section-heading {
    margin-bottom: 45px;
}

.location-modern-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,.95fr)
        minmax(0,1.15fr);

    gap: 28px;

    align-items: stretch;
}


/* TARJETA */

.location-card {
    padding: 32px;

    background: #ffffff;

    border:
        1px solid
        #e5e7eb;

    border-radius:
        var(
            --card-radius,
            18px
        );

    box-shadow:
        0 15px 40px
        rgba(15,23,42,.07);
}

.location-business-header {
    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 30px;
}

.location-business-icon {
    width: 64px;
    height: 64px;

    flex:
        0
        0
        64px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border:
        1px solid
        #e5e7eb;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 6px 18px
        rgba(15,23,42,.08);

    font-size: 25px;
}

.location-business-icon img {
    width: 100%;
    height: 100%;

    padding: 5px;

    object-fit: contain;
}

.location-business-header h3 {
    margin:
        0
        0
        3px;

    color: #111827;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 22px;
}

.location-business-header span {
    color: #6b7280;

    font-size: 14px;
}


/* DATOS */

.location-detail {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;
}

.location-detail-icon {
    width: 42px;
    height: 42px;

    flex:
        0
        0
        42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #f3f4f6;

    font-size: 17px;
}

.location-detail
> div:last-child {
    min-width: 0;

    padding-top: 1px;
}

.location-detail strong {
    display: block;

    margin-bottom: 3px;

    color: #111827;

    font-size: 14px;

    font-weight: 700;
}

.location-detail span {
    display: block;

    color: #6b7280;

    font-size: 14px;

    line-height: 1.5;

    overflow-wrap: anywhere;
}


/* BOTONES */

.location-actions {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 12px;

    margin-top: 28px;
}

.location-actions
.site-button {
    width: 100%;

    min-height: 48px;

    text-align: center;
}

.location-route-button {
    background:
        var(
            --color-primary,
            #dc2626
        );

    color: #ffffff;
}

.location-whatsapp-button {
    background: #ecfdf3;

    border:
        1px solid
        #bbf7d0;

    color: #15803d;
}


/* MAPA */

.location-map-card {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: #f8fafc;

    border:
        1px solid
        #e5e7eb;

    border-radius:
        var(
            --card-radius,
            18px
        );

    box-shadow:
        0 15px 40px
        rgba(15,23,42,.07);
}

.location-map-card iframe {
    width:
        100% !important;

    height:
        100% !important;

    min-height:
        470px !important;

    display: block;

    border:
        0 !important;
}

.location-map-empty {
    min-height: 470px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #6b7280;

    font-size: 40px;
}

.location-map-empty span {
    font-size: 14px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    margin: 0;

    padding:
        60px 0
        0;

    background: #0f172a;

    color: #ffffff;
}

.footer-container {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.35fr
        .8fr
        .95fr
        1.25fr;

    gap: 50px;

    align-items: start;
}

.footer-brand-column {
    padding-right: 15px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-brand img {
    display: block;

    width: auto;

    max-width: 170px;

    max-height: 75px;

    object-fit: contain;
}

.footer-brand strong {
    color: #ffffff;

    font-size: 20px;
}

.footer-about {
    max-width: 320px;

    margin:
        0 !important;

    color:
        #94a3b8 !important;

    font-size:
        14px !important;

    line-height: 1.7;
}


/* REDES */

.footer-socials-inline {
    display: flex;

    gap: 10px;

    margin-top: 22px;
}

.footer-socials-inline a {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(255,255,255,.08);

    color: #ffffff;

    text-decoration: none;

    font-weight: 800;

    transition: .2s ease;
}

.footer-socials-inline a:hover {
    background:
        var(
            --color-primary,
            #dc2626
        );

    transform:
        translateY(-2px);
}


/* COLUMNAS */

.footer-column h3 {
    margin:
        0
        0
        20px;

    color: #ffffff;

    font-family:
        var(
            --font-heading,
            Arial,
            sans-serif
        );

    font-size: 16px;
}

.footer-column > a,
.footer-column > p,
.footer-muted {
    margin:
        0
        0
        11px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.55;

    text-decoration: none;
}

.footer-column > a {
    display: block;
}

.footer-column > a:hover {
    color: #ffffff;
}

.footer-contact-line {
    display:
        flex !important;

    align-items: flex-start;

    gap: 10px;
}

.footer-contact-line span {
    flex: 1;

    min-width: 0;

    overflow-wrap: anywhere;
}


/* INFERIOR */

.footer-bottom {
    width:
        min(
            1180px,
            calc(100% - 40px)
        );

    margin:
        45px auto
        0;

    padding:
        20px 0;

    display: flex;

    align-items: center;

    justify-content:
        space-between;

    gap: 20px;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    color: #64748b;

    font-size: 12px;
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 800;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.25);

    font-size: 25px;

    transition: .2s ease;
}

.floating-whatsapp:hover {
    transform:
        translateY(-4px);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .site-nav a {
        padding:
            9px
            7px;

        font-size: 12px;
    }

    .navbar-phone span {
        display: none;
    }

}


@media (max-width: 950px) {

    .location-modern-grid {
        grid-template-columns: 1fr;
    }

    .location-map-card,
    .location-map-card iframe {
        min-height:
            400px !important;
    }

    .footer-container {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );

        gap: 40px;
    }

}


@media (max-width: 900px) {

    .site-nav {
        position: fixed;

        top: 0;
        right: 0;

        width:
            min(
                340px,
                88vw
            );

        height: 100vh;

        z-index: 900;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding:
            95px
            25px
            30px;

        background:
            var(
                --color-secondary,
                #111827
            );

        transform:
            translateX(100%);

        transition:
            transform .25s ease;

        box-shadow:
            -10px 0 30px
            rgba(0,0,0,.25);
    }

    .site-nav.open {
        transform:
            translateX(0);
    }

    .site-nav a {
        padding:
            13px
            15px;

        font-size: 15px;
    }

    .navbar-toggle {
        display: block;

        position: relative;

        z-index: 901;
    }

    body.nav-open
    .nav-overlay {
        display: block;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0,1fr)
            );
    }

    .about-grid {
        grid-template-columns:
            1fr;
    }

}


@media (max-width: 680px) {

    .container {
        width:
            calc(
                100% - 28px
            );
    }

    .navbar-container {
        width:
            calc(
                100% - 26px
            );

        min-height: 68px;
    }

    .site-logo {
        max-width: 145px;

        height: 43px;
    }

    .navbar-whatsapp {
        display: none;
    }

    .hero {
        min-height: 86vh;

        padding:
            120px 0
            65px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions
    .site-button {
        width: 100%;
    }

    .section {
        padding:
            65px 0;
    }

    .services-grid,
    .promotions-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns:
            1fr;
    }

    .gallery-item {
        height: 240px;
    }

}


@media (max-width: 620px) {

    .opinion-modal {
        padding: 12px;
    }

    .opinion-modal-box {
        max-height:
            calc(
                100vh - 24px
            );

        padding:
            28px
            20px;
    }

    .opinion-modal-header {
        padding-right: 35px;
    }

    .opinion-modal-header h2 {
        font-size: 26px;
    }

    .location-section {
        padding:
            55px 0;
    }

    .location-card {
        padding: 22px;
    }

    .location-actions {
        grid-template-columns:
            1fr;
    }

    .location-map-card,
    .location-map-card iframe {
        min-height:
            330px !important;
    }

    .site-footer {
        padding-top: 45px;
    }

    .footer-container {
        grid-template-columns:
            1fr;

        gap: 32px;
    }

    .footer-brand-column {
        padding-right: 0;
    }

    .footer-bottom {
        margin-top: 35px;

        flex-direction: column;

        text-align: center;
    }

}