:root {

    /* COLORES */
    --color-primary: #3c5b49;
    --color-secondary: #a4c0af;
    --color-third: #74a7b0;

    --glass-bg: rgba(164, 192, 175, 0.636);
    --glass-blur: 12px;
    --glass-border: rgba(0, 0, 0, 0.35);

    --container-max: 1560px;
    /* probá 1280–1560 según look */
    --container-pad: 1.8rem;

}

body {
    margin: 0;
    min-height: 100vh;

    background: rgb(230, 229, 224);

    line-height: 1.2;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
    color: inherit;
    text-decoration: none;

}


/* este es el body lock */
body.is-nav-open {
    overflow: hidden;
}

p,
button,
a,
span,
label,
input {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    border-radius: 50px;
    background-color: var(--color-secondary);
    border: 1px solid rgba(0, 0, 0, 0);

    transition:
        background-color 420ms ease,
        backdrop-filter 420ms ease,
        -webkit-backdrop-filter 420ms ease,
        border-color 420ms ease,
        transform 420ms ease,
        box-shadow 420ms ease;
}

/* Capa de imagen (invisible por defecto) */
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background-image: url("../assets/photos/IMG_1522.JPG");

    /* ← CAMBIÁ ESTO */
    background-repeat: no-repeat;
    background-size: auto;
    background-position: 90% 90%;
    /* X Y */

    opacity: 0;
    transition: opacity 420ms ease;
}

.btn:hover {
    background-color: var(--glass-bg);
    border-color: black;

    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn:hover::before {
    opacity: 0.2;
}

.btn:focus-visible {
    background-color: var(--glass-bg);
    border-color: black;

    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));

    transform: translateY(-1px);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);


}

.btn:focus-visible::before {
    opacity: 0.2;
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.10);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

    .btn:hover,
    .btn:focus-visible {
        background-color: rgba(164, 192, 175, 0.6);
    }
}

input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
}







h1,
h2,
h3,
h4 {
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

h3 {
    font-weight: 300;
}

button {
    border-radius: 50px;
    background-color: var(--color-secondary);
    border: 1px solid black;
}



*,
*::before,
*::after {
    box-sizing: border-box;
}


a:focus-visible,
button:focus-visible {
    outline: none;

}




html {
    scroll-behavior: smooth;
    /* opcional, si querés animación */
}

#about,
#services {
    scroll-margin-top: 120px;
    /* ajustá al alto real de tu header */
}











/* HEADER */

.site-header {
    width: 100%;


    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 60;

    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition:
        background-color 0.3s ease,
        backdrop-filter 0.3s ease,
        -webkit-backdrop-filter 0.3s ease;


}

.site-header.is-scrolled {
    background-color: rgba(164, 192, 175, 0.409);
    /* #a4c0af */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid black;
}

.site-header__inner {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* padding: 1.8rem 1.8rem; */

    padding-block: 1.8rem;
    padding-inline: 1.8rem;
    transition: padding-top 1.1s ease, padding-bottom 1.1s ease;

    min-height: 70px;
    position: relative;
}

.site-header.is-compact .site-header__inner {
    padding-block: 0.5rem;
}





.site-header__logo {
    height: 68px;
    position: relative;
    display: flex;
    align-items: center;
}

.site-header__logo-img-green {
    height: 68px;
    width: auto;
    margin-left: -0.5rem;
    transition: height 1.1s ease, opacity 1.1s ease;
    opacity: 1;
    position: absolute;
}

.site-header__logo-img-black {
    height: 68px;
    width: auto;
    margin-left: -0.5rem;
    transition: height 1.1s ease, opacity 1.1s ease;
    opacity: 0;
    position: absolute;
}

.site-header.is-compact .site-header__logo-img-green {
    height: 52px;
    opacity: 0;
}

.site-header.is-compact .site-header__logo-img-black {
    height: 52px;
    opacity: 1;
    display: block;
}

















.site-header__toggle {
    display: none;
    position: relative;
    top: -0.5rem;
    transition: top 500ms ease;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    padding: 0;
    line-height: 0;

    appearance: none;
    -webkit-appearance: none;

    cursor: pointer;
}

.site-nav {
    display: block;
    min-width: 0;
    position: relative;
    top: -0.75rem;

    transition: top 1.1s ease;

    z-index: 70;
}



.site-nav__close {
    display: none;
}

.site-header.is-compact .site-nav {
    top: 0;
}

.site-nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    padding: 0.4rem 0 0.4rem 1rem;
}

@keyframes fadeDropIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.site-nav__link {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    padding: 0.4rem 0 0.4rem 1rem;

    /* animación */
    opacity: 0;
    animation: fadeDropIn 1.5s ease-out forwards;
}

.site-nav__item:nth-child(1) .site-nav__link {
    animation-delay: 120ms;
}

.site-nav__item:nth-child(2) .site-nav__link {
    animation-delay: 300ms;
}

.site-nav__item:nth-child(3) .site-nav__link {
    animation-delay: 500ms;
}

.site-header.is-compact .site-nav__link {
    animation: none;
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .site-nav__link {
        animation: none;
        opacity: 1;
        transform: none;
    }
}







.nav-backdrop {
    position: fixed;
    inset: 0;

    opacity: 0;
    pointer-events: none;

    /* importante: arriba del contenido del body, pero abajo del header/panel */
    z-index: 40;
    background: transparent;
    border-radius: 0;
}

/* cuando el menú está abierto */
body.is-nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
}













/*   HERO   ///   HERO   ///   HERO   ///   HERO   ///   HERO   ///   HERO   ///   HERO   ///   HERO   */

.hero {
    padding: 110px 1.8rem 1.5rem 1.8rem;
}

.hero__grid {
    width: 100%;
    max-width: 1900px;

    margin-inline: auto;


    padding-top: 1.8rem;


    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.8rem;

    align-items: stretch;
}


.hero__left {
    /* columnas 1 a 6 (ocupa 6 columnas) */
    grid-column: 1 / span 6;

    display: flex;
    flex-direction: column;

    gap: 1.8rem;

    justify-content: space-between;

    height: auto;

}

.hero__texts-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* justify-content: space-between; */
    height: 100%;
    flex: 1;
}

.hero__left--photo-container {
    flex: 1;
    aspect-ratio: 2/1;
}

.hero__left--photo {
    width: 100%;
    height: 100%;
}




.hero__right {
    /* columnas 7 a 12 (ocupa 6 columnas) */
    grid-column: 7 / span 6;
    display: flex;
    justify-content: end;
}

.hero__right--photo-container {
    aspect-ratio: 1/1;
    width: min(900px, 100%);
    /* ajustá 520 a tu gusto / diseño */
}

.hero__right--photo {
    width: 100%;
    height: 100%;
    display: block;
}

.hero__motto {
    margin-left: auto;
    margin-right: clamp(1rem, 7vw, 6rem);
    font-size: clamp(0.9rem, 1.3vw, 1.5rem);

    text-align: left;
    flex: 1;
    padding-top: 3rem;
    white-space: nowrap;
    font-weight: 400;
}

.hero__presentation {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1.8rem;
    flex: 1;
}


.hero__CTA-button {
    margin-top: auto;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    white-space: nowrap;

    min-height: 3rem;
    padding: 1rem 2rem;
}

.hero__CTA-button--icon {
    height: 1em;
    width: auto;
}

.hero__insight--container {
    display: flex;
    flex-direction: row;
    padding-bottom: clamp(5rem, 6vw, 8rem);
}

.hero__insight {
    font-size: clamp(0.9rem, 1.2vw, 1.5rem);
    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 350;
    /* font-style: italic; */
    margin: 0;
}

.hero__insight--wrap {
    display: flex;
    flex-direction: column;
}

.hero_location {
    font-size: clamp(0.8rem, 1vw, 2rem);
    align-self: baseline;
    margin: 1rem 0 0 0;
    font-weight: 300;
}




.hero__left--photo-container,
.hero__right--photo-container {
    overflow: hidden;
}

.hero__left--photo,
.hero__right--photo {
    opacity: 0;
    transform: translate(-20px, -20px);
    animation: heroFadeDiagonal 2s ease-out forwards;
}

.hero__right--photo {
    animation-delay: 140ms;
}

@keyframes heroFadeDiagonal {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}


/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {

    .hero__left--photo-container,
    .hero__right--photo-container {
        animation: none;
        clip-path: inset(0 0 0 0);
    }
}





@keyframes fadeDropIn {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-animate-in {
    opacity: 0;
    animation: fadeDropIn 0.9s ease-out forwards;
}

.hero__motto {
    animation-delay: 500ms;
}

.hero__insight {
    animation-delay: 250ms;
}

.hero_location {
    animation-delay: 120ms;
}

.hero__CTA-button {
    animation-delay: 800ms;
}




@media (prefers-reduced-motion: reduce) {

    .text-animate-in,
    [data-animate="fade-drop"] {
        animation: none;
        opacity: 1;
        transform: none;
    }
}


































/*   ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   */

.about-us {
    width: 100%;
    margin-block: 1rem;
}

.about-us__grid {
    padding: 2rem 1.8rem 2rem 1.8rem;
    width: auto;
    margin-inline: 1.8rem;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgb(186, 186, 186);
    border-bottom: 1px solid rgb(186, 186, 186);
}


.about-us__grid {
    position: relative;
    isolation: isolate;
}

.about-us__paragraph {
    padding: 0 6rem 1rem 6rem;
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
    text-align: center;

    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;

}

.about-us__CTA-button {
    margin-inline: auto;
    padding-inline: 2rem;
    font-size: 1rem;
    background: transparent;
    padding: 1rem 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    background-color: var(--color-secondary);
    white-space: nowrap;

    font-size: 1.25rem;

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.about-us__button-CTA__icon {
    height: 1em;
    width: auto;
}


/* OUR SERVICES   ///   OUR SERVICES   ///   OUR SERVICES   ///   OUR SERVICES   ///   */


.our-services__main-grid {
    padding: 2.6rem 1.8rem;
}

.our-services__services-grid {
    list-style: none;
    padding: 0 0 1.8rem 0;
    margin: 3rem 0 1rem 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 1.8rem;
    row-gap: 3rem;

    grid-auto-rows: 1fr;

    border-bottom: 1px solid rgb(186, 186, 186);
}

.our-services__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;

    min-width: 0;
}

.our-services__img-container {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.our-services__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.our-services__item-title {
    margin: 0;
}

.our-services__section-title {
    display: inline-flex;
}

.our-services__section-title--img {
    height: 0.8em;
    width: auto;
    align-self: center;
    margin-right: 1rem;
}







/*  WHY-PERMA   ///   WHY-PERMA   ///   WHY-PERMA   ///   WHY-PERMA   ///   WHY-PERMA   */

.why-perma__section-title {
    display: inline-flex;
}

.why-perma__section-title--img {
    height: 0.8em;
    width: auto;
    align-self: center;
    margin-right: 1rem;
}

.why-perma__main-grid {
    padding-inline: 1.8rem;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
}




















/* ===== Marquee viewport ===== */
.why-perma__reasons-marquee {

    overflow: hidden;
    padding: 1.8rem 0 2rem 0;

    position: relative;

    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.why-perma__reasons-track {
    display: flex;
    align-items: stretch;
    gap: 0;
    width: max-content;
    animation: whyPermaMarquee 40s linear infinite;
    will-change: transform;
}

/* Pausa al hover (opcional, recomendado) */
.why-perma__reasons-marquee:hover .why-perma__reasons-track,
.why-perma__reasons-marquee:focus-within .why-perma__reasons-track {
    animation-play-state: paused;
}

/* ===== Items: tamaño para que “entren 5” ===== */
.why-perma__reason-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 auto;

    width: 15rem;

    padding: 2rem 0;
    border-right: 1px solid rgb(186, 186, 186);
    align-items: center;
    justify-content: center;
}


.why-perma__reason-title {
    white-space: nowrap;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.15;
    min-height: calc(2 * 1.15em);
    /* 2 líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-perma__reason-icon {
    height: 5.5rem;

}


/* La animación: de 0 a -50% porque duplicamos el contenido una vez */
@keyframes whyPermaMarquee {
    to {
        transform: translateX(-50%);
    }
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .why-perma__reasons-track {
        animation: none;
        transform: none;
    }
}





















.why-perma__text-container {
    display: flex;
    justify-content: flex-end;
    padding-block: 1.8rem;
    position: relative;
    isolation: isolate;
}



.why-perma__text {
    text-align: right;
    display: block;


    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;

    max-width: 30ch;

    font-weight: 400;

    margin-top: 1rem;
    margin-bottom: 1rem;
}

.why-perma__text-container>* {
    position: relative;
    z-index: 1;
}





.why-perma__values-list--container {
    padding: 0.5rem 3rem;
}



.why-perma__values-list {
    padding: 0 4.8rem;
    font-size: small;
}

.why-perma__CTA-button {
    margin-inline: auto;
    padding-inline: 2rem;
    font-size: 1rem;
    background: transparent;
    padding: 1rem 2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    background-color: var(--color-secondary);
    white-space: nowrap;

    font-size: 1.25rem;

    display: inline-flex;
    align-self: center;
    gap: 0.5rem;

    align-items: center;
}

.why-perma__CTA-button--img {
    height: 1em;
    width: auto;
}




/* FOOTER   ///   FOOTER   ///   FOOTER   ///   FOOTER   ///   FOOTER   ///   FOOTER   */

.site-footer {
    background-color: var(--color-secondary);

    position: relative;
    isolation: isolate;

    font-weight: 500;

}

.site-footer>* {
    position: relative;
    z-index: 1;
}


.site-footer__inner {
    margin-inline: auto;
    gap: 2rem;
    padding: 1rem 7.8rem 1rem;
}

.site-footer__link {
    color: inherit;
    text-decoration: none;
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.site-footer__col--right {
    text-align: right;
}


.site-footer__bottom {
    margin-top: 1rem;
    margin-left: 1rem;
    display: flex;
    justify-content: center;
}

.site-footer__social {
    /* height: 2rem; */
}

.site-footer__social-img {
    height: 2rem;
}

.site-footer__line,
.site-footer__link {
    font-weight: 500;
}



/* Tablet */
@media (max-width: 1024px) {




    .site-header__logo {
        height: 52px;
        width: 52px;
        position: relative;
        display: block;
    }

    .site-header__logo-img-green {
        height: 52px;
        width: auto;
        margin-left: -0.5rem;
        transition:
            height 1.1s ease,
            opacity 1.1s ease;
        opacity: 1;
        position: absolute;
    }

    .site-header__logo-img-black {
        height: 52px;
        width: auto;
        margin-left: -0.5rem;
        transition:
            height 1.1s ease,
            opacity 1.1s ease;
        opacity: 0;
        position: absolute;
    }


    .site-header.is-compact .site-header__logo-img-green {
        height: 52px;
        opacity: 0;
    }

    .site-header.is-compact .site-header__logo-img-black {
        height: 52px;
        opacity: 1;
        display: block;
    }


    .site-nav {
        top: -0.5rem;
        transition: top 1s ease;
    }






    .hero {
        padding: 110px 1.2rem 0 1.2rem;
        margin-bottom: 1rem;
    }

    .hero__left,
    .hero__right {
        min-width: 0;
    }

    .hero__left--photo-container,
    .hero__right--photo-container {
        width: 100%;
        max-width: 100%;
    }

    .hero__right {
        justify-content: flex-start;
    }

    .hero__insight {
        font-size: clamp(0.9rem, 1.5vw, 1.5rem);
    }

    .hero_location {
        font-size: clamp(0.7rem, 1.25vw, 1.5rem);
    }



    .hero__insight--container {
        padding-bottom: 0;
    }


}




@media (max-width: 768px) {

    :root {
        --header-h: 105px;
        --hero-min-h: 600px;
        --hero-pb: 24px;
    }

    body {
        line-height: 1.4;
    }

    h2 {
        font-size: large;
    }


    /* LOGO   ///   LOGO   ///   LOGO   ///   LOGO   ///   */


    .site-header__logo {
        height: 52px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .site-header__logo-img-green {
        height: 52px;
        width: auto;
        margin-left: -0.5rem;
        transition:
            height 1.1s ease,
            opacity 1.1s ease;
        opacity: 1;
        position: absolute;
    }

    .site-header__logo-img-black {
        height: 52px;
        width: auto;
        margin-left: -0.5rem;
        transition:
            height 1.1s ease,
            opacity 1.1s ease;
        opacity: 0;
        position: absolute;
    }

    .site-header.is-compact .site-header__logo-img-green {
        height: 52px;
        opacity: 0;
    }

    .site-header.is-compact .site-header__logo-img-black {
        height: 52px;
        opacity: 1;
        display: block;
    }



    /* TOGGLE ///   TOGGLE ///   TOGGLE ///   TOGGLE ///   TOGGLE ///   */


    .site-header__toggle {
        display: block;
        background-color: transparent;
        padding-inline: 0;
    }

    .site-header.is-scrolled .site-header__toggle {
        top: 0;
    }

    body.is-nav-open .site-header__toggle {
        top: 0;
    }

    .site-header__toggle-icon-container {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-header__toggle-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .site-nav {
        position: fixed;
        z-index: 200;
        padding: 1rem 1rem;

        left: 0;
        right: 0;
        top: 100%;

        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition: opacity 220ms ease, visibility 0s linear 220ms;

        overflow: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;

    }

    body.is-nav-open .site-nav {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity 220ms ease;

        touch-action: pan-y;

        background-color: #8eadb374;
        /* casi transparente */
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border-bottom: 1px solid black;
        border-top: 1px solid black;
    }

    body.is-nav-open .site-header {
        background-color: rgba(164, 192, 175, 0.409);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(0, 0, 0);
        border-top: 2px solid rgb(0, 0, 0);
    }

    .site-header.is-compact .site-nav {
        top: 100%;
    }

    body.is-nav-open {
        touch-action: none;
    }

    body.is-nav-open main,
    body.is-nav-open footer {
        filter: blur(10px);
        transition: filter 220ms ease;
    }

    .site-nav__close {
        display: inline-flex;
    }

    .site-nav__panel {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;

        transform: translateY(14px);
        opacity: 0;

        transition: transform 260ms ease, opacity 180ms ease;
    }

    body.is-nav-open .site-nav__panel {
        transform: translateY(0);
        opacity: 1;
    }

    body.is-nav-open .site-header__toggle {
        /* ejemplo: */
        background: transparent;
    }

    /* Botón cerrar */
    .site-nav__close {
        position: absolute;
        top: 1rem;
        right: 1rem;

        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.25);
        border-radius: 999px;
        padding: 0.6rem 1rem;
        font: inherit;
    }

    /* Lista vertical */
    .site-nav__list {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    /* Links grandes, táctiles */
    .site-nav__link {
        padding: 0.6rem 0;
        font-size: 1.6rem;
        letter-spacing: 0.02em;
    }

    /* por si quedó el top:-0.6rem en desktop */

    .site-header__inner {
        padding: 0.8rem 1rem;
    }

    .hero__presentation {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero__insight {
        display: none;
    }






    /* HERO SECTION   ///   HERO SECTION   ///   HERO SECTION   ///   HERO SECTION   ///   */

    .hero__grid {
        display: flex;
        flex-direction: column;
        padding-top: 0;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding-inline: 1rem;
        padding-top: 93px;
        margin-bottom: 0;
    }

    .hero__left {
        gap: 1rem;
        display: block;
    }

    .hero__motto {
        padding-top: 0;
        font-size: clamp(1.1rem, 5vw, 3.2rem);
        text-align: left;
        margin-left: 0;
        margin-right: auto;
    }

    .hero_location {
        margin-top: 0;
    }

    .hero__left--photo-container {
        line-height: 0;
    }

    .hero__left--photo,
    .hero__left--photo-container {
        display: none;
    }

    .hero__texts-grid {
        gap: 1rem;
    }

    .hero__CTA-button {
        width: auto;
        align-self: flex-end;
    }

    .hero__right--photo-container {
        width: 100%;
        height: 450px;
        overflow: hidden;
    }

    .hero__right--photo {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }



    /* ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   ABOUT US   ///   */

    .about-us__grid {
        padding-block: 1rem;
        padding-inline: 0;
        margin-inline: 1rem;
    }

    .about-us__paragraph {
        padding: 1rem 0;
    }

    .about-us__CTA-button {
        width: 60vw;
        max-width: 360px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;

        white-space: nowrap;
        overflow: hidden;

        padding-inline: clamp(1rem, 4.5vw, 2rem);
        padding-block: clamp(0.7rem, 2.5vw, 1rem);

        font-size: clamp(0.9rem, 3.4vw, 1.1rem);
    }

    .about-us__button-CTA__icon {
        flex: 0 0 auto;
        width: 0.9em;
        height: 0.9em;
    }


    /* OUR SERVICES   ///   OUR SERVICES   ///   OUR SERVICES   ///   OUR SERVICES   ///   */


    .our-services__main-grid {
        padding: 1rem 1rem;
    }

    .our-services__services-grid {
        list-style: none;
        padding: 0 0 2rem 0;
        margin: 1rem 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1rem;
        row-gap: 2.5rem;
        grid-auto-rows: 1fr;
    }

    .our-services__item {
        gap: 0.5rem;
    }

    .our-services__section-title {
        margin-top: 0.5rem;
    }



    /* WHY PERMA   ///   WHY PERMA   ///   WHY PERMA   ///   WHY PERMA   ///   */

    .why-perma__main-grid {
        padding: 0 1rem 1rem 1rem;
    }


    .why-perma__section-title {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .why-perma__text {
        font-size: clamp(0.8rem, 4.5vw, 3rem);
    }


    .why-perma__reason-item {
        min-width: 300px;
    }


    .why-perma__CTA-button {
        width: 50vw;
        max-width: 360px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;

        white-space: nowrap;
        overflow: hidden;

        padding-inline: clamp(1rem, 4.5vw, 2rem);
        padding-block: clamp(0.7rem, 2.5vw, 1rem);

        font-size: clamp(0.9rem, 3.4vw, 1.1rem);
    }

    .why-perma__CTA-button--img {
        flex: 0 0 auto;
        width: 0.9em;
        height: 0.9em;
    }



    /* SITE FOOTER   ///   SITE FOOTER   ///   SITE FOOTER   ///   SITE FOOTER   ///   */

    .site-footer {
        font-size: clamp(0.75rem, 3.2vw, 0.9rem);
        line-height: 1.35;
    }

    .site-footer__inner {
        margin-inline: 1rem;
        padding: 1rem 0;
    }

    .site-footer__top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }



}



































/* =========================
   CONTACT PAGE
   Pegá esto al final de style.css
========================= */

/* Contact hero */
.contact-hero {
    padding: calc(110px + 3.6rem) 1.8rem 0 1.8rem;
    /* respeta tu header fijo */
}

.contact-hero__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding-top: 1.8rem;
}

.contact-hero__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.8rem;

    padding-bottom: 1.8rem;
    border-bottom: 1px solid rgb(186, 186, 186);
    /* misma lógica que about-us */
}

.contact-hero__title {
    margin: 0;
    font-size: clamp(2.6rem, 4.8vw, 5.2rem);
    line-height: 1.02;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.contact-hero__whatsapp {
    margin-top: 0.75rem;
    padding: 0.8rem 1.2rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    white-space: nowrap;
    text-decoration: none;
    color: inherit;
    font-size: 0.95rem;
}

.contact-hero__whatsapp-icon {
    height: 1em;
    width: auto;
}

/* Contact form section */
.contact-form {
    padding: 0 1.8rem 3rem 1.8rem;
}

.contact-form__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;

    padding-top: 3.6rem;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
}

.contact-form__intro {
    padding-top: 0.5rem;
}

.contact-form__label {
    /* “CONTACT FORM” (eyebrow) */
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    font-family: "Inconsolata", monospace;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.75);
}

.contact-form__label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(1px);
}

.contact-form__title {
    margin: 1.1rem 0 0 0;
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
    line-height: 1.05;
    animation-delay: 200ms;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    animation-delay: 500ms;
}

/* grid del form (2 columnas + textarea full) */
.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.4rem;
    align-items: end;
}

.contact-form__field {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.contact-form__field--full {
    grid-column: 1 / -1;
}

.contact-form__label-text {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.75);
}

/* Inputs estilo “underline” */
.contact-form__input,
.contact-form__textarea {
    width: 100%;
    font: inherit;
    color: inherit;

    background: transparent;
    border: 0;
    border-bottom: 1px solid rgb(186, 186, 186);

    padding: 0.55rem 0;
    outline: none;
}

/* textarea más alta, como en el mock */
.contact-form__textarea {
    min-height: 100px;
    resize: vertical;
    padding-top: 0.8rem;
}

/* Focus */
.contact-form__input:focus,
.contact-form__textarea:focus {
    border-bottom-color: rgba(0, 0, 0, 0.85);
}

/* Botón send */
.contact-form__submit {
    align-self: flex-start;
    padding: 0.85rem 1.2rem;

    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    font-size: 0.95rem;
    white-space: nowrap;
}

.contact-form__submit-icon {
    height: 1em;
    width: auto;
}

/* Locations */
.locations {
    background-color: var(--color-secondary);
    padding: 3.2rem 1.8rem 4rem 1.8rem;
    margin-top: 2.8rem;
}

.locations__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
}

.locations__label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    font-family: "Inconsolata", monospace;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.8);
}

.locations__label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(1px);
}

.locations__title {
    margin: 1.1rem 0 0 0;
    font-size: clamp(1.4rem, 2.4vw, 2.1rem);
    line-height: 1.12;
    max-width: 44ch;
}

/* Las listas aparecen como “bloque centrado” debajo */
.locations__lists {
    margin-top: 2.4rem;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;

    max-width: 820px;

    margin-inline: auto;


}

.locations__list {
    display: grid;
    gap: 0.55rem;
    text-align: center;
}

.locations__item {
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.85);
}


/* =========================
     Responsive
  ========================= */

/* Tablet */
@media (max-width: 1024px) {
    .contact-hero__header {
        gap: 1.2rem;
    }

    .contact-form__inner {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }

    .locations__lists {
        max-width: 900px;
        margin-inline: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero {
        padding: 93px 1rem 0 1rem;
        /* coherente con tu mobile hero */
    }

    .contact-hero__inner {
        padding-top: 0.8rem;
    }

    .contact-hero__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-hero__whatsapp {
        margin-top: 0;
    }

    .contact-form {
        padding: 0 1rem 2.5rem 1rem;
    }

    .contact-form__inner {
        padding-top: 1.6rem;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        row-gap: 1.2rem;
    }

    .contact-form__submit {
        width: auto;
    }

    .locations {
        padding: 2.6rem 1rem 3rem 1rem;
    }

    .locations__lists {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        max-width: none;
        margin-inline: 0;
    }
}













/* =========================
   THANKS PAGE
========================= */

.thanks {
    min-height: 100vh;

    /* respeta header fijo aunque no esté presente */
    padding: calc(110px + 3.6rem) 1.8rem 3rem;

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

.thanks__inner {
    width: 100%;
    max-width: 720px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;

    padding-top: 1.8rem;
}

.thanks__title {
    margin: 0;

    font-size: clamp(2.6rem, 4.8vw, 4.4rem);
    line-height: 1.02;
}

.thanks__text {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.4;

    max-width: 46ch;
}

.thanks__back {
    margin-top: auto;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    white-space: nowrap;

    min-height: 3rem;
    padding: 1rem 2rem;
}

.thanks__back-icon {
    height: 1em;
    width: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .thanks {
        padding: 93px 1rem 2.5rem;
    }

    .thanks__inner {
        padding-top: 1rem;
    }

    .thanks__back {
        font-size: 0.9rem;
    }
}



























/* =========================
   OUR SERVICES PAGE (NEW)
========================= */

.services-page {
    /* padding: calc(110px + 1.8rem) var(--container-pad) 4rem; */
    padding: calc(110px + 3.6rem) 1.8rem 5.4rem 1.8rem;
}

.services-page__inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
}

.services-page__header {
    padding-top: 0.6rem;
}

.services-page__title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: clamp(2.6rem, 4.8vw, 5.2rem);
    line-height: 1.02;
    padding-block: 1.8rem;
}

.services-page__rule {
    height: 1px;
    background: rgb(186, 186, 186);
}

/* --- Selected projects label --- */
.services-projects {
    padding-top: 3.6rem;
}

.services-projects__label {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;

    font-family: "Inconsolata", monospace;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    color: rgba(0, 0, 0, 0.75);
}

.services-projects__filter {
    flex: 0 0 auto;
}

.services-projects__label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    transform: translateY(1px);
}

/* --- Filters row --- */
.services-projects__filters {
    margin-top: 1rem;
    padding-block: 1.8rem;
}

.services-projects__filters-list {
    display: flex;
    align-items: baseline;

    width: 100%;
    max-width: 70vw;

    margin-right: auto;
    justify-content: space-between;

    flex-wrap: nowrap;
    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;

    padding: 1rem;

    transition: max-width 1000ms ease;

    gap: 2rem;
    background-color: #74a7b014;
    border-radius: 5px;
}

.services-projects__filters:hover .services-projects__filters-list {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.services-projects__filters:has(.services-projects__filter-link:focus-visible) .services-projects__filters-list {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.services-projects__filters-list::-webkit-scrollbar {
    height: 0;
}

.services-projects__filter-link {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;

    font-family: "Inconsolata", monospace;
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.65);
    white-space: nowrap;

    text-align: center;
}


.services-projects__filter-link.is-active {
    color: rgba(0, 0, 0, 0.92);
    font-weight: 600;
}

.services-projects__filter-link.is-active::before {
    content: "/ ";
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
}

/* --- Gallery grid --- */
.services-projects__grid {
    margin-top: 1.2rem;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 3.6rem;
    column-gap: 1.8rem;
    align-items: start;
}

.services-projects__card {
    margin: 0;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.03);
}

.services-projects__img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* caption in the “empty” 4th column of row 2 */
.services-projects__caption {
    margin: 0;
    grid-column: 4;
    align-self: end;
    justify-self: end;

    font-family: "Inconsolata", monospace;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.65);
    white-space: nowrap;
}

/* Tablet */
@media (max-width: 1024px) {
    .services-page {
        padding: calc(110px + 1.2rem) 1.2rem 3.2rem;
    }

    .services-projects__grid {
        gap: 1rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-page {
        padding: 93px 1rem 3rem;
    }

    .services-page__rule {}

    .services-projects__filters-list {
        gap: 1.4rem;
    }

    .services-projects__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .services-projects__caption {
        grid-column: 1 / -1;
        justify-self: end;
        padding-top: 0.4rem;
    }
}







/* TESTIMONIALS */

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 4rem 1.8rem;
    border-top: 1px solid rgb(186, 186, 186);
}

.testimonials h2 {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

/* Reutilizamos el estilo de punto de tus otros títulos */
.testimonials h2::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    background-image: url("../assets/iconos/icons8-punto-y-final-ios-17-glyph/icons8-punto-y-final-60.png");
    background-size: contain;
    background-repeat: no-repeat;
    align-self: center;
}

#reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.review-card {
    background-color: rgba(255, 255, 255, 0.3);
    /* Sutil transparencia */
    padding: 2rem;
    border: 1px solid rgb(186, 186, 186);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.review-card:hover {
    background-color: var(--color-secondary);
    transform: translateY(-5px);
}

.review-card__author {
    font-family: "Inconsolata", monospace;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    display: block;
}

.review-card__rating {
    color: var(--color-primary);
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.review-card__text {
    font-family: "Inconsolata", monospace;
    font-weight: 300;
    line-height: 1.4;
    font-size: 1rem;
    margin: 0;
}

.testimonials__footer {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.testimonials__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

/* Ajuste para que las estrellas no se vean pegadas si la reseña es corta */
.review-card__rating {
    margin-bottom: 0.5rem;
}

/* Tablet / Mobile adjustments */
@media (max-width: 768px) {
    .testimonials {
        padding: 2.6rem 1.8rem;
    }

    #reviews-container {
        grid-template-columns: 1fr;
    }
}