/*
Theme Name: AcoresPRO Theme
Theme URI: http://acorespro.com/
Description: AcoresPRO Wordpress Theme. Developed for custom themes made by AcoresPRO. Theme uses Bootstrap 5.3.2 and PHP 7.4.
Author: AcoresPRO
Author URI: https://acorespro.com
Version: 3.3
*/
.otgs-development-site-front-end {
    display: none !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --g: #95C11F;
    --dark: #0D1616;
    --inter: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: #fff;
    font-family: var(--inter);
    overflow-x: hidden;
}

main {
    display: block;
}

.section-click {
    position: absolute;
    inset: 0;
    z-index: 10;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.cur {
    position: fixed;
    width: 7px;
    height: 7px;
    background: var(--g);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cur-r {
    position: fixed;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(141, 198, 63, 0.35);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

#ld {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

#ld.out {
    animation: ldOut 0.5s ease 0.1s forwards;
}

@keyframes ldOut {
    to {
        opacity: 0;
        pointer-events: none;
    }
}

.ld-ico {
    width: 68px;
    height: 71px;
}

.ld-p1 {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: dS 0.7s ease 0.2s forwards;
}

.ld-p2 {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: dS 0.7s ease 0.55s forwards;
}

.ld-ln {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: dS 0.5s ease 1s forwards;
}

@keyframes dS {
    to {
        stroke-dashoffset: 0;
    }
}

.ld-tr {
    width: 68px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.ld-fi {
    height: 100%;
    width: 0;
    background: var(--g);
    animation: bF 1.6s ease 0.25s forwards;
}

@keyframes bF {
    to {
        width: 100%;
    }
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 18px 36px;
    background-color: #0D161659;
}

.site-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
    pointer-events: none;
}

.nb {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.nb-t {
    display: block;
    font-family: var(--inter);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.35;
    color: #fff;
}

.nb-t em {
    color: var(--g);
    font-style: normal;
    display: block;
}

.nm {
    display: flex;
    gap: 32px;
    list-style: none;
    position: relative;
    z-index: 1;
    margin: 0 40px 0 auto;
    padding: 0;
}

.nm a {
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.2s;
}

.nm a:hover,
.nm .current-menu-item>a,
.nm .current-menu-parent>a {
    color: var(--g);
}

.nl {
    display: flex;
    gap: 5px;
    position: relative;
    z-index: 1;
    font-family: var(--inter);
    font-size: 16px;
    align-items: center;
}

.nl span,
.nl a {
    font-family: var(--inter);
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
}

.nl span.on {
    font-weight: 600;
}

.nl a:hover {
    color: var(--g);
}

.nl .s {
    color: rgba(255, 255, 255, 1);
    pointer-events: none;
}

/* ─── Mobile menu button (hamburger) ─── */
.mob-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.mob-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.9);
    transition: background 0.2s;
    border-radius: 1px;
}

.mob-menu-btn:hover span {
    background: var(--g);
}

/* ─── Mobile menu overlay ─── */
#mobMenu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--dark);
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.38s ease;
}

#mobMenu.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mob-menu-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    flex-shrink: 0;
}

.mob-menu-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mob-menu-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    padding: 6px 8px;
    transition: color 0.2s;
    font-style: normal;
}

.mob-menu-close:hover {
    color: var(--g);
}

.mob-menu-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.mob-nm {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 38px;
    text-align: center;
}

.mob-nm a {
    font-family: var(--inter);
    font-size: clamp(22px, 6vw, 32px);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s;
}

.mob-nm a:hover,
.mob-nm .current-menu-item>a,
.mob-nm .current-menu-parent>a {
    color: var(--g);
}

.mob-nl {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 28px 20px;
    font-family: var(--inter);
    font-size: 12px;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.mob-nl span,
.mob-nl a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.mob-nl span.on,
.mob-nl a:hover {
    color: var(--g);
}

.mob-nl .s {
    color: rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.snav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 500;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.snav-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(10, 20, 20, 0.45);
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s, opacity 0.2s;
    padding: 0;
}

.snav-btn:hover {
    border-color: var(--g);
    color: var(--g);
    transform: translateY(-1px);
}

.snav-btn.is-disabled {
    opacity: 0.28;
    pointer-events: none;
}

.hero-wrap {
    height: 100vh;
    width: 100%;
    padding: 0 22px 27px 0;
}

#hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
    filter: brightness(0.6);
    opacity: 0;
    transition: opacity 0.85s ease;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-content {
    display: none;
}

.hero-slide-content.active {
    display: block;
    animation: fU 0.5s ease forwards;
}

.hero-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 2px;
}

.hbody {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding: 0 52px 72px;
}

.hbody h1 {
    font-family: var(--inter);
    font-size: clamp(38px, 5.5vw, 64px);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hnext,
.hprev {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--inter);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
}

.hnext {
    color: var(--g);
}

.hnext::before {
    content: '';
    width: 5vw;
    max-width: 77px;
    height: 1px;
    background: var(--g);
    transition: width 0.3s;
}

.hnext:hover::before {
    width: 42px;
}

.hprev {
    color: var(--g);
}

.hprev::after {
    content: '';
    width: 5vw;
    max-width: 77px;
    height: 1px;
    background: var(--g);
    transition: width 0.3s, background 0.3s;
}

.hprev:hover {
    color: var(--g);
}

.hprev:hover::after {
    width: 42px;
    background: var(--g);
}

.hnum {
    position: absolute;
    bottom: 68px;
    right: 52px;
    z-index: 2;
    font-family: var(--inter);
    font-size: 180px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    user-select: none;
    opacity: 0;
    animation: fI 1s ease 2.6s forwards;
}

.hhint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    opacity: 0;
    animation: fI 1s ease 3.1s forwards;
    pointer-events: none;
}

.hhint span {
    font-family: var(--inter);
    font-size: 8.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.hdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--g);
    animation: bob 1.6s infinite;
}

@keyframes bob {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

#about {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.abg {
    position: absolute;
    inset: 0;
    background: center/cover no-repeat;
}

.aov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.12) 55%, transparent 100%);
}

.abody {
    position: relative;
    z-index: 2;
    padding: 0 52px 68px;
    max-width: 560px;
}

.abody h2 {
    font-family: var(--inter);
    font-size: clamp(46px, 4.5vw, 52px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 22px;
}

.abody p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(255, 255, 255, 1);
    max-width: 400px;
}

.ahint {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    margin-top: 38px;
}

.ahint span {
    font-family: var(--inter);
    font-size: 8.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
}

#services {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
}

.svc-hdr {
    text-align: center;
    padding: 5vh 40px 32px;
    border-bottom: 1px solid #333333;
    height: 14vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.svc-hdr h2 {
    margin: 0;
    font-family: var(--inter);
    font-size: 42px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.svc-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 66vh;
    width: 940px;
    max-width: 100vw;
    margin: 0 auto;
}

.svc-grid {
    display: flex;
    flex: 1;
    height: 60vh;
    max-height: 60vh;
    gap: 20px;
}

.svc-card-wrap {
    text-decoration: none !important;
    color: white !important;
    width: 100%;
    position: absolute;
    display: flex;
    height: 100%;
    z-index: 5;
}

.svc-card-wrap:hover {
    text-decoration: none !important;
    color: white !important;
}

.svc-card {
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: flex 0.52s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.svc-card:last-child {
    border-right: none;
}

.svc-grid:hover .svc-card {
    flex: 0.3;
}

.svc-grid .svc-card:hover {
    flex: 3.5;
}

.svc-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.38);
    transition: filter 0.5s ease, transform 0.6s ease;
}

.svc-card:hover .svc-bg {
    filter: brightness(0.5) saturate(0.7);
}

.svc-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.04) 55%);
}

.svc-acc {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 55px;
    background: rgba(255, 255, 255, 1);
    z-index: 3;
    transition: opacity 0.28s;
}

.svc-card:hover .svc-acc {
    opacity: 0;
}

.svc-lv {
    width: 100vw;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 53vw) rotate(90deg);
    white-space: nowrap;
    font-family: var(--inter);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 1);
    transition: opacity 0.26s ease;
    pointer-events: none;
    z-index: 3;
}

.svc-card:hover .svc-lv {
    opacity: 0;
}

.svc-body {
    position: relative;
    z-index: 4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px 22px;
}

.svc-tag2 {
    font-family: var(--inter);
    font-size: 9.73px;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.26s ease 0.06s, transform 0.26s ease 0.06s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.svc-tag2::before {
    content: "";
    width: 10%;
    height: 1px;
    border-bottom: 1px solid #fff;
}

.svc-ttl {
    margin: 0 0 12px;
    font-family: var(--inter);
    font-size: 37px;
    font-weight: 700;
    line-height: 1.15;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.26s ease 0.13s, transform 0.26s ease 0.13s;
}

.svc-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--inter);
    font-size: 10.3px;
    font-weight: 400;
    letter-spacing: 0.24em;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    opacity: 0;
    background-color: var(--dark);
    padding: 8px 18px;
    width: fit-content;
    transform: translateY(8px);
    transition: opacity 0.26s ease 0.19s, transform 0.26s ease 0.19s, gap 0.2s;
}

.svc-more:hover {
    gap: 13px;
}

.svc-card:hover .svc-tag2,
.svc-card:hover .svc-ttl,
.svc-card:hover .svc-more {
    opacity: 1;
    transform: translateY(0);
}

.no-services {
    width: 100%;
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.6);
}

.svc-pag {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px 36px 14px;
    gap: 3px;
}

.pag-dot {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pag-dot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.pag-arr {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 30px;
    line-height: 1;
    font-family: var(--inter);
}

.loc-bar {
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.loc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 52px 10px 52px;
    cursor: pointer;
    transition: color 0.2s;
    font-family: var(--inter);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
}

.loc-item:hover {
    color: var(--g);
}

.loc-text {
    order: 4;
    width: 100%;
    text-align: center;
}

.loc-arr {
    color: rgba(255, 255, 255, 0.45);
    font-size: 15px;
    transition: transform 0.2s, color 0.2s;
}

.loc-item:hover .loc-arr {
    transform: translateX(3px);
    color: var(--g);
}

footer {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 1);
    height: 22vh;
    max-height: 22vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ft-in {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0px 10px 4px;
}

.ft-socs {
    display: flex;
    gap: 12px;
}

.ft-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--g);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.ft-soc:hover {
    background: rgba(141, 198, 63, 0.1);
}

.ft-soc svg {
    width: 15px;
    height: 15px;
    fill: rgba(141, 198, 63, 0.8);
}

.ft-lnks {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.ft-lnks a {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    text-align: center;
}

.ft-copy {
    font-family: var(--inter);
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}

.ft-logos {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 6px;
    padding: 2px;
    background-color: white;
}

.ft-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.ft-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-logo-icon img {
    margin-top: 10px;
    width: 759px;
    max-width: 100%;
}

.ft-logo-project-label {
    color: #000;
    text-decoration: underline;
}

.ft-logo span {
    font-family: var(--inter);
    font-size: 7px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
    max-width: 80px;
}

@keyframes fU {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fI {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.rev {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rev.in {
    opacity: 1;
    transform: translateY(0);
}

/* LT ARQUITECTOS TEMPLATE */
.page-template-template-lt .lt-page {
    background: #081112;
}

.page-template-template-lt .lt-hero {
    width: 100%;
    margin-top: 0;
    height: 100vh;
}

.page-template-template-lt .lt-hero img,
.page-template-template-lt .lt-hero-fallback {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

.page-template-template-lt .lt-hero-fallback {
    background: linear-gradient(180deg, #20343a 0%, #101f22 100%);
}

.page-template-template-lt .lt-intro {
    background: #041012;
    padding: clamp(42px, 8vw, 80px) 0;
}

.page-template-template-lt .lt-intro-wrap {
    width: min(1220px, calc(100% - 72px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

.page-template-template-lt .lt-intro-left p {
    margin: 0;
    color: #ffffff;
    font-family: var(--inter);
    font-weight: 500;
    font-size: clamp(20px, 5vw, 30px);
}

.lt-intro-left br {
    display: none;
}

.page-template-template-lt .lt-intro-left p strong,
.page-template-template-lt .lt-intro-left p b {
    font-weight: 700;
}

.page-template-template-lt .lt-intro-right {
    color: rgba(255, 255, 255, 1);
    font-family: var(--inter);
    font-size: clamp(16px, 1.25vw, 18px);
    font-weight: 400;
    line-height: 1.85;
}

.page-template-template-lt .lt-intro-right p {
    margin: 0 0 1.2em;
}

.page-template-template-lt .lt-intro-right p:last-child {
    margin-bottom: 0;
}

.page-template-template-lt .lt-manifesto {
    background: var(--g);
    color: #fff;
    padding: clamp(36px, 6vw, 62px) 0;
    margin-bottom: 20px;
}

.page-template-template-lt .lt-manifesto-wrap {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.page-template-template-lt .lt-manifesto br {
    display: none;
}

.page-template-template-lt .lt-manifesto p {
    margin: 0;
    font-family: var(--inter);
    font-size: clamp(32px, 4.8vw, 58px);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.page-template-template-lt .lt-manifesto p+p {
    margin-top: 0.15em;
}

.page-template-template-lt .lt-manifesto p.in {
    opacity: 1;
    transform: translateY(0);
}

/* SERVICOS TEMPLATE */
.page-template-template-servicos #services {
    max-height: 710px;
    height: 710px;
}

.page-template-template-servicos .svc-grid {
    height: 531px !important;
    max-height: 531px !important;
}

.page-template-template-servicos .svc-before-after {
    background: var(--dark);
    padding: 0 0 30px;
}

.page-template-template-servicos .svc-ba-head {
    width: min(1100px, calc(100% - 44px));
    margin: 0 auto 22px;
}

.page-template-template-servicos .svc-ba-head h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.08;
}

.page-template-template-servicos .svc-ba-head p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.6;
}

.page-template-template-servicos .ba-compare {
    position: relative;
    width: 100vw;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    min-height: 350px;
    overflow: hidden;
    background: #0a1719;
}

.page-template-template-servicos .ba-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    width: 100vw;
}

.page-template-template-servicos .ba-after {
    z-index: 1;
}

.page-template-template-servicos .ba-before-wrap {
    position: absolute;
    inset: 0 auto 0 0;
    overflow: hidden;
    z-index: 2;
}

.page-template-template-servicos .ba-before {
    width: 100vw;
}

.page-template-template-servicos .ba-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateX(-50%);
    z-index: 4;
    pointer-events: none;
}

.page-template-template-servicos .ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0f2023;
    font-size: 20px;
    font-weight: 600;
}

.page-template-template-servicos .ba-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    opacity: 0;
    cursor: ew-resize;
}

.page-template-template-servicos .ba-label {
    position: absolute;
    top: 20px;
    z-index: 6;
    padding: 8px 14px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.page-template-template-servicos .ba-label-before {
    left: 20px;
}

.page-template-template-servicos .ba-label-after {
    right: 20px;
}

/* PROJETOS TEMPLATE */
.page-template-template-projetos .projects-page {
    background: var(--dark);
}

.page-template-template-projetos .projects-grid-wrap {
    width: calc(100vw - 40px);
    margin: 0 auto;
    padding: 80px 0 20px;
}

.page-template-template-projetos .projects-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
    grid-auto-rows: 418px;
}

.page-template-template-projetos .proj-card {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.page-template-template-projetos .proj-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.page-template-template-projetos .proj-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.35s ease;
}

.page-template-template-projetos .proj-card:hover img {
    transform: scale(1.035);
    filter: brightness(1.05);
}

.page-template-template-projetos .proj-card.m-span-1 {
    grid-column: span 1;
}

.page-template-template-projetos .proj-card.m-span-2 {
    grid-column: span 2;
}

.page-template-template-projetos .proj-card.m-span-3 {
    grid-column: span 3;
}

.page-template-template-projetos .proj-card.m-span-4 {
    grid-column: span 4;
}

.page-template-template-projetos .proj-card.m-span-5 {
    grid-column: span 5;
}

.page-template-template-projetos .proj-card.m-span-6 {
    grid-column: span 6;
}

.page-template-template-projetos .projects-loader {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 22px 0 8px;
}

.page-template-template-projetos .projects-loader span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.page-template-template-projetos .projects-sentinel {
    height: 1px;
}

/* SINGLE PROJECT TEMPLATE */
.single-project .single-project-page,
.single-projects .single-project-page {
    background: #051113;
}

.single-project .sp-hero,
.single-projects .sp-hero {
    position: relative;
    min-height: clamp(320px, 56vw, 760px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.single-project .sp-hero-overlay,
.single-projects .sp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 14, 16, 0.82) 8%, rgba(4, 14, 16, 0.16) 58%, rgba(4, 14, 16, 0.1) 100%);
}

.single-project .sp-hero-title-wrap,
.single-projects .sp-hero-title-wrap {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
    padding: 0 0 clamp(30px, 4vw, 54px);
}

.single-project .sp-hero-title,
.single-projects .sp-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 6.6vw, 72px);
    font-weight: 700;
    line-height: 1.03;
}

.single-project .sp-info,
.single-projects .sp-info {
    background: #041012;
    padding: clamp(34px, 5vw, 56px) 0;
}

.single-project .sp-info-grid,
.single-projects .sp-info-grid {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 520px) 1fr;
    gap: clamp(26px, 6vw, 74px);
}

.single-project .sp-meta-row,
.single-projects .sp-meta-row {
    display: grid;
    grid-template-columns: minmax(120px, 180px) 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 0.25px solid rgba(255, 255, 255, 1);
    align-items: center;
}

.single-project .sp-meta-row:first-child .sp-meta-value,
.single-projects .sp-meta-row:first-child .sp-meta-value {
    font-weight: 700;
}

.single-project .sp-meta-label,
.single-projects .sp-meta-label {
    font-size: 15px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.single-project .sp-meta-value,
.single-projects .sp-meta-value {
    font-size: 17px;
    color: #fff;
}

.single-project .sp-content,
.single-projects .sp-content {
    font-size: clamp(24px, 3.3vw, 30px);
    line-height: 1.32;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
}

.single-project .sp-content p,
.single-projects .sp-content p {
    margin: 0 0 0.9em;
}

.single-project .sp-content p:last-child,
.single-projects .sp-content p:last-child {
    margin-bottom: 0;
}

.single-project .sp-gallery-wrap,
.single-projects .sp-gallery-wrap {
    background: #041012;
    padding: 30px 0 30px;
}

.single-project .sp-gallery-slider,
.single-projects .sp-gallery-slider {
    width: 100vw;
    margin: 0 auto;
}

.single-project .sp-gallery-item,
.single-projects .sp-gallery-item {
    padding-right: 10px;
}

.single-project .sp-gallery-item img,
.single-projects .sp-gallery-item img {
    display: block;
    width: 100%;
    height: clamp(220px, 25vw, 360px);
    object-fit: cover;
}

.single-project .sp-gallery-slider .slick-track,
.single-projects .sp-gallery-slider .slick-track {
    display: flex;
}

.single-project .sp-gallery-slider .slick-slide,
.single-projects .sp-gallery-slider .slick-slide {
    height: inherit;
}

.single-project .sp-gallery-slider .slick-slide>div,
.single-projects .sp-gallery-slider .slick-slide>div {
    height: 100%;
}

/* SINGLE SERVICE TEMPLATE */
.single-service .single-service-page,
.single-services .single-service-page {
    background: #041012;
}

.single-service .ss-hero,
.single-services .ss-hero {
    min-height: clamp(280px, 42vw, 500px);
    background-size: cover;
    background-position: center;
}

.single-service .ss-main,
.single-services .ss-main {
    padding: clamp(34px, 5vw, 56px) 0 28px;
}

.single-service .ss-grid,
.single-services .ss-grid {
    width: min(1280px, calc(100% - 54px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(360px, 1.4fr);
    gap: clamp(30px, 6vw, 80px);
    align-items: start;
}

.single-service .ss-title-col h1,
.single-services .ss-title-col h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 5.2vw, 74px);
    font-weight: 700;
    line-height: 1.02;
}

.single-service .ss-content,
.single-services .ss-content {
    color: rgba(255, 255, 255, 1);
    font-size: clamp(23px, 3vw, 30px);
    line-height: 1.35;
    font-weight: 300;
}

.single-service .ss-content p,
.single-services .ss-content p {
    margin: 0 0 0.86em;
}

.single-service .ss-content p:last-child,
.single-services .ss-content p:last-child {
    margin-bottom: 0;
}

.single-service .ss-content strong,
.single-services .ss-content strong,
.single-service .ss-content b,
.single-services .ss-content b {
    font-weight: 700;
}

.single-service .ss-accordion,
.single-services .ss-accordion {
    margin-top: clamp(24px, 4vw, 38px);
}

.single-service .ss-acc-item,
.single-services .ss-acc-item {
    border-bottom: 1px solid var(--g);
}

.single-service .ss-acc-head,
.single-services .ss-acc-head {
    width: 100%;
    background: transparent;
    border: 0;
    color: #fff;
    padding: 13px 4px 13px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 300;
}

.single-service .ss-acc-icon,
.single-services .ss-acc-icon {
    font-size: 31px;
    line-height: 1;
    color: rgba(255, 255, 255, 1);
    min-width: 24px;
    text-align: center;
}

.single-service .ss-acc-body,
.single-services .ss-acc-body {
    padding: 0 0 14px;
    color: rgba(255, 255, 255, 1);
    font-size: 18px;
}

.single-service .ss-acc-body p,
.single-services .ss-acc-body p {
    margin: 0;
}

.single-service .ss-gallery-wrap,
.single-services .ss-gallery-wrap {
    margin-bottom: 20px;
}

.single-service .ss-gallery-slider,
.single-services .ss-gallery-slider {
    width: 100%;
    margin: 0 auto;
}

.single-service .ss-gallery-item,
.single-services .ss-gallery-item {
    padding-right: 2px;
}

.single-service .ss-gallery-item img,
.single-services .ss-gallery-item img {
    width: 100%;
    height: clamp(220px, 23vw, 320px);
    object-fit: cover;
    display: block;
}

/* CONTACTOS TEMPLATE */
.page-template-template-contactos .contact-page {
    background: #041012;
}

.page-template-template-contactos .ct-hero {
    min-height: clamp(280px, 43vw, 500px);
    background-size: cover;
    background-position: center;
}

.page-template-template-contactos .ct-body {
    padding: clamp(30px, 5vw, 54px) 0 clamp(38px, 6vw, 76px);
}

.page-template-template-contactos .ct-wrap {
    width: min(1280px, calc(100% - 54px));
    margin: 0 auto;
}

.page-template-template-contactos .ct-head {
    display: flex;
    justify-content: space-between;
}

.page-template-template-contactos .ct-head .ct-head-text {
    width: 80%;
}

.page-template-template-contactos .ct-head button {
    width: 17%;
}

.page-template-template-contactos .ct-head p {
    margin: 0;
    font-size: 24px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 5vh;
}

.page-template-template-contactos .ct-head h1 {
    margin: 8px 0 0;
    font-size: clamp(22px, 4.8vw, 72px);
    font-weight: 700;
    line-height: 1.04;
    color: rgba(255, 255, 255, 1);
}

.page-template-template-contactos .ct-main {
    margin-top: clamp(26px, 4vw, 40px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: clamp(18px, 3.5vw, 34px);
    align-items: start;
}

.page-template-template-contactos .ct-form .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 18px;
}

.page-template-template-contactos .ct-form .wpcf7-form p {
    margin: 0;
}

.page-template-template-contactos .ct-form .wpcf7-form p:nth-of-type(4) {
    grid-column: 1 / -1;
}

.page-template-template-contactos .ct-form .wpcf7-form p:last-of-type {
    grid-column: 1 / -1;
}

.page-template-template-contactos .ct-form label {
    display: block;
    font-size: 18px;
    color: rgba(255, 255, 255, 1);
}

.page-template-template-contactos .ct-form input,
.page-template-template-contactos .ct-form textarea {
    width: 100%;
    margin-top: 14px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
    background: transparent;
    color: #fff;
    font-size: 16px;
    padding: 0 0 10px;
    outline: none;
}

.page-template-template-contactos .ct-form textarea {
    min-height: 72px;
    resize: vertical;
}

.page-template-template-contactos .ct-form .wpcf7-submit {
    border: 0;
    background: var(--g);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 57px 14px 28px;
    cursor: pointer;
    transition: filter 0.2s;
    width: auto;
    margin: 0 !important;
}

.page-template-template-contactos .ct-form p:has(>.wpcf7-submit) {
    width: fit-content;
    position: relative;
}

.wpcf7-spinner {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}

.page-template-template-contactos .ct-form p:has(>.wpcf7-submit) svg {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translate(0, -50%);
}

.page-template-template-contactos .ct-form .wpcf7-submit:hover {
    filter: brightness(1.06);
}

.page-template-template-contactos .ct-pin-btn {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    line-height: 0;
}

.page-template-template-contactos .ct-pin-btn img {
    width: 188px;
    height: auto;
    display: block;
}

.page-template-template-contactos .ct-pin-fallback {
    width: 84px;
    height: 84px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: inline-block;
    background: linear-gradient(135deg, #bfe36f 0%, #8fc424 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.page-template-template-contactos .ct-map-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 10, 12, 0.58);
    z-index: 1400;
}

.page-template-template-contactos .ct-map-canvas {
    position: fixed;
    top: 10vh;
    right: 0;
    width: min(1100px, 96vw);
    height: 80vh;
    background: #091719;
    z-index: 1500;
    transform: translateX(102%);
    transition: transform 0.35s ease;
    box-shadow: -16px 0 36px rgba(0, 0, 0, 0.36);
}

.page-template-template-contactos .ct-map-canvas iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.page-template-template-contactos .ct-map-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: rgba(0, 0, 0, 0.38);
    color: #fff;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.page-template-template-contactos.ct-map-open,
.page-template-template-contactos.ct-map-open body {
    overflow: hidden;
}

.page-template-template-contactos.ct-map-open .ct-map-canvas {
    transform: translateX(0);
}

@media (max-width: 1360px) {
    .svc-lv {

        transform: translate(-50%, 55vw) rotate(90deg) !important;
    }
}

@media (max-width: 991px) {
    .site-nav {
        justify-content: space-between;
    }

    .hero-wrap {
        padding: 0 0 10px 0 !important;
    }

    .site-nav {
        padding: 14px 20px;
    }

    .nm,
    .nl {
        display: none;
    }

    .mob-menu-btn {
        display: flex;
    }

    .hbody {
        padding-bottom: 25vh !important;
    }

    .hbody,
    .abody {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hnum {
        right: 20px;
        bottom: 26px;
        font-size: 120px;
    }

    .svc-wrap,
    .svc-pag {
        padding-left: 20px;
        padding-right: 20px;
    }

    .svc-grid {
        min-height: 420px;
    }

    .svc-grid:hover .svc-card,
    .svc-grid .svc-card:hover {
        flex: 1;
    }

    .svc-lv {
        opacity: 1 !important;
        transform: translate(-50%, 60vw) rotate(90deg) !important;
    }

    .svc-body {
        display: none;
    }

    .loc-item {
        width: 100%;
        justify-content: center;
        border-right: none;
    }

    .loc-item:last-child {
        border-bottom: none;
    }

    .cur,
    .cur-r,
    .snav {
        display: none;
    }

    .page-template-template-lt .lt-intro-wrap {
        width: calc(100% - 36px);
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-template-template-lt .lt-intro-right {
        font-size: 15px;
        line-height: 1.75;
    }

    .page-template-template-servicos .ba-compare {
        aspect-ratio: auto;
        min-height: 260px;
        height: 62vw;
    }

    .page-template-template-projetos .projects-grid-wrap {
        width: calc(100% - 20px);
        padding-top: 66px;
    }

    .page-template-template-projetos .projects-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: 200px;
    }

    .page-template-template-projetos .proj-card.m-mob-span-1 {
        grid-column: span 1;
    }

    .page-template-template-projetos .proj-card.m-mob-span-2 {
        grid-column: span 2;
    }

    .page-template-template-projetos .proj-card.m-mob-span-3 {
        grid-column: span 3;
    }

    .page-template-template-projetos .proj-card.m-mob-span-4 {
        grid-column: span 4;
    }

    .page-template-template-projetos .proj-card.m-mob-span-5 {
        grid-column: span 5;
    }

    .page-template-template-projetos .proj-card.m-mob-span-6 {
        grid-column: span 6;
    }

    .single-project .sp-hero-title-wrap,
    .single-projects .sp-hero-title-wrap,
    .single-project .sp-info-grid,
    .single-projects .sp-info-grid {
        width: calc(100% - 28px);
    }

    .single-project .sp-info-grid,
    .single-projects .sp-info-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .single-project .sp-content,
    .single-projects .sp-content {
        font-size: 20px;
    }

    .single-project .sp-gallery-item,
    .single-projects .sp-gallery-item {
        padding-right: 0;
    }

    .single-service .ss-grid,
    .single-services .ss-grid {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .single-service .ss-acc-body,
    .single-services .ss-acc-body {
        font-size: 16px;
    }

    .page-template-template-contactos .ct-wrap {
        width: calc(100% - 28px);
    }

    .page-template-template-contactos .ct-main {
        grid-template-columns: 1fr;
    }

    .page-template-template-contactos .ct-form .wpcf7-form {
        grid-template-columns: 1fr;
    }

    .page-template-template-contactos .ct-form .wpcf7-form p:nth-of-type(4),
    .page-template-template-contactos .ct-form .wpcf7-form p:last-of-type {
        grid-column: auto;
    }

    .page-template-template-contactos .ct-pin-btn img {
        width: 116px !important;
    }

    .page-template-template-contactos .ct-map-canvas {
        width: 100%;
        top: 10vh;
        height: 80vh;
    }

    .projects-grid-wrap {
        width: 100vw !important;

    }

    .page-template-template-projetos .projects-grid {
        gap: 10px !important;
    }

    .ct-pin-btn {
        width: 116px !important;
    }

    .ct-head-text p {
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .page-template-template-servicos #services {
        max-height: 100vh !important;
        height: 100vh !important;
    }

    .page-template-template-servicos .svc-grid {
        height: 82vh !important;
        max-height: 82vh !important;
    }

}

@media (max-width: 768px) {
    .svc-wrap {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .svc-grid {
        gap: 5px !important;
    }

    .ft-lnks {
        flex-direction: column;
        gap: 10px !important;
    }

    .ft-copy {
        width: 200px !important;
    }

    .loc-item:first-child {
        padding-bottom: 11px !important;
    }

    .loc-item:last-child {
        padding-top: 11px !important;
    }

    #about .abody {
        padding: 0 !important;
    }

    #about .abody>div {
        background-color: var(--dark);
        padding: 50px 20px !important;

    }

    .abody h2 {
        padding: 0 20px !important;
        margin-bottom: 10px !important;
    }

    .svc-hdr h2 {
        font-size: 28px !important;
    }

    .ss-hero {
        height: 100vh !important;
    }

    .ss-main {
        position: relative;
    }

    .ss-main .ss-title-col {
        position: absolute;
        bottom: calc(100% + 20px);
    }

    .ss-main .ss-title-col h1 {
        color: #000 !important;
    }

    .sp-hero {
        height: 100vh !important;
    }

    .single-project .sp-hero,
    .single-projects .sp-hero {
        align-items: start !important;
        padding-top: 10vh !important;
    }

    .single-project .sp-meta-row,
    .single-projects .sp-meta-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .sp-meta-label {
        font-size: 14px !important;
    }

    .sp-meta-value {
        font-size: 16px !important;
    }

    footer {
        height: auto !important;
        max-height: unset !important;
    }
}

.page-template-default .single-title {
    margin-top: 10vh;
    margin-bottom: 5vh;
}

.page-template-default div.container:has(> .single-title) {
    margin-bottom: 20px;
}

p:has(.wpcf7-acceptance) {
    grid-column: 1 / -1;
}

p:has(.wpcf7-acceptance) span:not(.wpcf7-list-item-label),
p:has(.wpcf7-acceptance) label {
    width: 100%;
}

p:has(.wpcf7-acceptance) .wpcf7-list-item {
    margin-left: 0;
}

p:has(.wpcf7-acceptance) .wpcf7-list-item {
    margin-left: 0;
}

label {
    display: inline-flex;
}

p:has(.wpcf7-acceptance) .wpcf7-list-item label input {
    max-width: 16px;
    margin: 5px 5px 0 0;
    max-height: 16px;
}

p:has(.wpcf7-acceptance) .wpcf7-list-item a {
    color: white;
}