/* =========================================================
   GLOBAL / TOKENS
   ========================================================= */
:root {
    --site-bg: #050505;
    --site-text: #efefef;
    --site-muted: #9a9a9a;
    --site-accent: #c9a227;
    --site-accent-soft: #e8c042;
    --site-accent-dim: rgba(201, 162, 39, 0.1);
    --site-accent-border: rgba(201, 162, 39, 0.24);
    --site-border: #1e1e1e;
}

body.site-body {
    margin: 0;
    background: var(--site-bg);
    color: var(--site-text);
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}

/* =========================================================
   SHARED LAYOUT (HEADER / MAIN / FOOTER)
   ========================================================= */
.site-navbar {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(7, 7, 7, 0.92) 100%);
    border-bottom: 1px solid var(--site-accent-border);
    padding: 18px 0;
    backdrop-filter: blur(14px);
    position: relative;
    z-index: 120;
}

.navbar-toggler {
    border: 1px solid rgba(201, 162, 39, 0.42);
    border-radius: 0.25rem;
    padding: 0.25rem 0.75rem;
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(78%) sepia(76%) saturate(1060%) hue-rotate(5deg) brightness(101%) contrast(91%);
}

.navbar-toggler[aria-expanded="true"] {
    background: rgba(201, 162, 39, 0.08);
    border-color: var(--site-accent);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    filter: brightness(0) saturate(100%) invert(84%) sepia(83%) saturate(1180%) hue-rotate(5deg) brightness(103%) contrast(94%);
}

.site-brand img {
    height: 42px;
    width: auto;
    display: block;
}

.site-navbar .navbar-nav .nav-link,
.site-navbar.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.98);
    font-size: 17px;
    letter-spacing: 0.01em;
    font-weight: 400;
    opacity: 0.88;
    text-transform: none;
    padding: 12px 16px;
    position: relative;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus,
.site-navbar .navbar-nav .nav-link.is-active,
.site-navbar.navbar-dark .navbar-nav .nav-link:hover,
.site-navbar.navbar-dark .navbar-nav .nav-link:focus,
.site-navbar.navbar-dark .navbar-nav .nav-link.is-active {
    color: #ffffff;
    opacity: 1;
}

.site-navbar .nav-link:not(.dropdown-toggle).is-active::after,
.site-navbar .nav-link:not(.dropdown-toggle):hover::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: var(--site-accent);
}

.site-navbar .dropdown-toggle.is-active::before,
.site-navbar .dropdown-toggle:hover::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 5px;
    height: 2px;
    background: var(--site-accent);
}

.site-navbar .dropdown-toggle::after {
    border-top-color: var(--site-accent);
}

.site-products-dropdown {
    background: #0b0b0c;
    border: 1px solid var(--site-accent-border);
    border-radius: 0;
    padding: 8px 0;
    min-width: 220px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    z-index: 130;
}

.site-products-dropdown .dropdown-item {
    color: #d8d8d8;
    text-transform: none;
    font-size: 15px;
    padding: 10px 16px;
}

.site-products-dropdown .dropdown-item:hover,
.site-products-dropdown .dropdown-item:focus {
    color: #fff;
    background: var(--site-accent-dim);
}

.site-main {
    min-height: 50vh;
}

.site-footer {
    background: #000;
    border-top: 1px solid var(--site-border);
    padding: 30px 0 34px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 14px;
    position: relative;
}

.footer-menu li + li {
    margin-top: 10px;
}

.footer-menu a {
    color: var(--site-muted);
    text-decoration: none;
    text-transform: none;
    font-size: 18px;
}

.footer-menu a:hover {
    color: #fff;
}

.footer-menu a.is-active {
    color: #fff;
}

.footer-contact {
    padding-left: 15px;
    position: relative;
}

.footer-contact p {
    margin: 0 0 12px;
    color: var(--site-muted);
    line-height: 1.8;
}

.footer-contact p.text-2,
.footer-contact p.text-2 a {
    color: #818181;
    text-decoration: none;
}

.footer-contact p.text-2 a:active,
.footer-contact p.text-2 a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-social-block {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.footer-social-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-social-logo {
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.footer-social a {
    width: 28px;
    height: 28px;
    border: 1px solid #7a7a7a;
    background: #f2f2f2;
    color: #545454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-transform: lowercase;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social a:hover {
    border-color: var(--site-accent);
    color: #1a1a1a;
    background: var(--site-accent-soft);
    transform: translateY(-1px);
}

.floating-whatsapp {
    position: fixed;
    right: 14px;
    bottom: 16px;
    z-index: 80;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: #f3f3f3;
    color: #111111;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp svg {
    width: 36px;
    height: 36px;
    fill: #111111;
}

.floating-whatsapp:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.68);
    background: #111111;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.floating-whatsapp:hover svg {
    fill: #f3f3f3;
}

/* =========================================================
   PAGE: HOME
   ========================================================= */
.home-hero {
    background: #000;
    padding: 0;
}

.home-hero .container {
    max-width: 1460px;
}

.home-hero__html-shell {
    position: relative;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(90deg, #0a0907 0%, #0a0907 52%, #100e09 76%, #131109 100%);
}

.home-hero__html-shell .container {
    max-width: 1320px;
}

.home-hero__html-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 68% 56% at 72% 34%, rgba(201, 162, 39, 0.045) 0%, transparent 58%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 34%);
    pointer-events: none;
}

.home-hero__html-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.04) 0%, transparent 18%, transparent 78%, rgba(201, 162, 39, 0.025) 100%);
    pointer-events: none;
}

.home-hero__video-wrap {
    position: relative;
    background: #000;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.home-hero__cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("../img/home-hero-cover-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: grayscale(100%);
    transition: filter 0.9s ease, opacity 0.9s ease;
}

.home-hero__video-wrap.is-color .home-hero__cover {
    filter: grayscale(0%);
}
.home-hero__video-wrap:hover .home-hero__cover {
    filter: grayscale(0%);
}
.home-hero__video-wrap.is-playing .home-hero__cover {
    opacity: 0;
    pointer-events: none;
}

.home-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
    outline: none;
    cursor: pointer;
}

.home-hero__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f4f4f4;
    opacity: 0.9;
    transition: opacity 0.2s ease;
    z-index: 3;
}

.home-hero__video-wrap.is-playing .home-hero__play {
    opacity: 0;
    pointer-events: none;
}

.home-hero__play-icon {
    width: 100px;
    height:100px;
    border:8px solid #f4f4f4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-hero__play-icon svg {
    width: 45px;
    height: 45px;
    fill: #f4f4f4;
}

.home-hero__image-wrap {
    position: relative;
    background: #050505;
    overflow: hidden;
    min-height: 320px;
}

.home-hero__image {
    width: 100%;
    height: auto;
    min-height: 320px;
    max-height: 760px;
    object-fit: cover;
    display: block;
}

.home-hero__content {
    position: relative;
    min-height: 690px;
    padding-top: 96px;
    padding-bottom: 96px;
}

.home-hero__content > [class*="col-"] {
    position: relative;
    z-index: 1;
}

.home-hero__eyebrow {
    margin: 0 0 30px;
    color: var(--site-accent);
    font-size: 12px;
    line-height: 1.3;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-hero__eyebrow::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    flex: 0 0 auto;
}

.home-hero__title {
    margin: 0;
    color: #ffffff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: clamp(48px, 6.4vw, 90px);
    line-height: 0.94;
    letter-spacing: -0.035em;
    font-weight: 600;
    text-transform: none;
    max-width: 1080px;
}

.home-hero__title span {
    color: var(--site-accent);
}

.home-hero__title br {
    display: none;
}

.home-hero__title br::after {
    content: " ";
}

.home-hero__subtitle {
    margin: 20px 0 0;
    color: #d7d7d7;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.2;
    font-weight: 300;
    max-width: 900px;
}

.home-hero__text {
    margin: 34px 0 0;
    max-width: 720px;
    color: #beb7aa;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
}

.home-hero__text strong {
    color: #ffffff;
    font-weight: 600;
}

.home-hero__actions {
    margin-top: 42px;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 30px;
    border: 1px solid var(--site-accent);
    color: #090909;
    background: var(--site-accent);
    text-decoration: none;
    letter-spacing: 0.08em;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(201, 162, 39, 0.12);
    transition: border-color 0.25s ease, background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.home-hero__button:hover {
    border-color: var(--site-accent-soft);
    background: var(--site-accent-soft);
    color: #090909;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(201, 162, 39, 0.16);
}

/* =========================================================
   HOME: NUMEROS
   ========================================================= */
.home-stats {
    background: #000;
    padding-top: 48px;
    padding-bottom: 48px;
}

.home-stats .container {
    max-width: 1360px;
}

.home-stats__grid {
    align-items: stretch;
}

.home-stats__item {
    height: 100%;
    padding: 26px 28px 24px;
    display: flex;
    justify-content: center;
    text-align: center;
    background: transparent;
    border: 0;
}

.home-stats__content {
    display: inline-block;
    width: min(100%, 260px);
    text-align: left;
}

.home-stats__vue-host {
    height: 100%;
}

.home-stats__vue-host > .home-stats__item {
    min-height: 100%;
}

@media (min-width: 992px) {
    .home-hero__title br {
        display: block;
    }
}

.home-stats__value {
    color: #fff;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 56px;
    line-height: 0.92;
    font-weight: 700;
    letter-spacing: 0;
}

.home-stats__value-suffix {
    color: var(--site-accent);
}

.home-stats__label {
    margin: 6px 0 0;
    color: #f0f0f0;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    font-weight: 400;
    text-transform: uppercase;
}

@media (min-width: 768px) {

}

/* =========================================================
   HOME: GALERIAS
   ========================================================= */
.home-galleries {
    padding: 42px 0 28px;
    background: #000;
}

.home-gallery-block + .home-gallery-block {
    margin-top: 40px;
}

.home-gallery-row {
    display: grid;
    grid-template-columns: minmax(240px, 0.92fr) minmax(0, 3.08fr);
    gap: 16px;
    align-items: stretch;
}

.home-gallery-intro-card {
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: transparent;
    display: flex;
}

.home-gallery-intro-card__content {
    padding: 44px 20px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.home-gallery-intro-card__title {
    margin: 0;
    color: #ffffff;
    font-size: 38px;
    line-height: 0.96;
    letter-spacing: 0.018em;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 500;
    text-transform: uppercase;
}

.home-gallery-intro-card__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.90);
    font-size: 19px;
    line-height: 1.34;
    font-weight: 300;
    max-width: 195px;
}

.home-gallery-intro-card__link {
    color: #ffffff;
    text-decoration: none;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 500;
}

.home-gallery-intro-card__link span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s ease;
}

.home-gallery-intro-card__link:hover {
    color: var(--site-accent);
}

.home-gallery-intro-card__link:hover span {
    transform: translateX(3px);
}

.home-gallery-swiper-wrap {
    position: relative;
    min-width: 0;
    padding-bottom: 34px;
}

.home-gallery-swiper-wrap.is-loading .swiper {
    opacity: 0;
    visibility: hidden;
}

.home-gallery-swiper-wrap.is-ready .swiper {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease;
}

.home-gallery-swiper-wrap.is-loading::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 4px solid rgba(201, 162, 39, 0.18);
    border-top-color: var(--site-accent);
    border-right-color: var(--site-accent);
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: opacity 0.35s ease;
    animation: homeGallerySpin 0.75s linear infinite;
    z-index: 6;
}

.home-gallery-swiper-wrap.is-ready::after {
    opacity: 0;
    animation: none;
}

@keyframes homeGallerySpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.home-gallery-swiper-wrap .swiper-slide {
    height: 430px;
    border: 0;
    background: transparent;
}

.home-gallery-swiper-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.72);
    transform: scale(1.08) translateX(0);
    transform-origin: center center;
    transition: filter 0.45s ease, transform 0.45s ease;
}

.home-gallery-swiper-wrap .swiper-slide a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-gallery-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.home-gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.34);
    opacity: 1;
    margin: 0 5px;
}

.home-gallery-pagination .swiper-pagination-bullet-active {
    background: var(--site-accent);
}

.home-gallery-swiper-wrap .swiper-slide a:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.08) translateX(12px);
}

.home-gallery-card__play {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.home-gallery-card:hover .home-gallery-card__play {
    transform: translateX(1px);
    opacity: 1;
    color: var(--site-accent);
}

.home-gallery-card__play-icon {
    width: 100%;
    height: 100%;
    opacity: 0.92;
    background-color: currentColor;
    -webkit-mask-image: url("../img/player-play-circle.svg");
    mask-image: url("../img/player-play-circle.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* =========================================================
   HOME: WHATSAPP CTA
   ========================================================= */
.home-whatsapp-cta {
    padding-top:60px;
    padding-bottom: 60px;
    background: #000;
}

.home-whatsapp-cta .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.home-whatsapp-cta__text {
    margin: 0;
    font-size: 30px;
    letter-spacing: 0.02em;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 400;
}

.home-whatsapp-cta__button {
    border: 1px solid rgba(255, 255, 255, 0.9);
    color: #1c2430;
    padding: 12px 20px 9px 20px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-whatsapp-cta__button span{
    font-size: 24px;
    text-decoration: none;
    font-weight: 800;
    text-decoration: none;
}

.home-whatsapp-cta__button:hover {
    border-color: var(--site-accent-soft);
    background: var(--site-accent-soft);
    color: #111111;
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.18);
    transform: translateY(-1px);
}

.home-whatsapp-cta__button svg {
    width: 33px;
    height: 33px;
    fill: currentColor;
}

/* =========================================================
   HOME: CLIENTES
   ========================================================= */
.home-clients-showcase {
    background: #000;
    padding: 44px 0 64px;
}

.home-clients-showcase__title {
    margin: 0 0 24px;
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.04em;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 300;
}

.home-clients-swiper-wrap {
    position: relative;
    padding-bottom: 38px;
}

.home-clients-swiper-wrap .swiper {
    overflow: hidden;
}

.home-clients-swiper-wrap .swiper-slide {
    height: auto;
}

.home-clients-item {
    min-height: 128px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.01);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.25s ease, background-color 0.25s ease;
}

.home-clients-item--link {
    text-decoration: none;
}

.home-clients-item:hover {
    border-color: var(--site-accent);
    background: var(--site-accent-dim);
}

.home-clients-item img {
    max-width: 100%;
    max-height: 118px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.home-clients-pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
}

.home-clients-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.34);
    opacity: 1;
    margin: 0 5px;
}

.home-clients-pagination .swiper-pagination-bullet-active {
    background: var(--site-accent);
}

/* =========================================================
   PAGE: PRODUTOS
   ========================================================= */
.products-showcase {
    background: #000;
    padding: 96px 0 64px;
    overflow-x: hidden;
}

.products-intro {
    max-width: 860px;
    margin: 0 0 72px;
    text-align: left;
}

.products-intro,
.products-intro * {
    color: #fff !important;
}

.products-intro__title {
    margin: 0 0 18px;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 500;
    line-height: 1;
}

.products-intro__divider {
    width: 88px;
    height: 1px;
    margin: 0 0 28px;
    background: var(--site-accent);
    opacity: 0.95;
}

.products-intro__text {
    font-size: 24px;
    line-height: 1.45;
}

.products-intro__text p:last-child {
    margin-bottom: 0;
}

.products-section + .products-section {
    margin-top: 42px;
}

.products-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: nowrap;
    overflow: hidden;
    min-width: 0;
    width: 100%;
}

.products-section__heading-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1 1 auto;
}

.products-section__divider {
    width: 2px;
    align-self: stretch;
    min-height: 84px;
    background: var(--site-accent);
    flex: 0 0 auto;
    margin: 0 10px;
}

.products-section__header {
    margin-bottom: 18px;
}

.products-section__title {
    margin: 0;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 74px;
    letter-spacing: 0.018em;
    font-weight: 500;
    line-height: 0.96;
    flex: 0 0 auto;
    white-space: nowrap;
}

.products-section__subtitle {
    margin: 0;
    color: #e9e9e9;
    font-size: 44px;
    line-height: 1.15;
    flex: 0 1 auto;
    min-width: 0;
    font-weight: 500;
}

.products-section__description {
    margin: 0;
    color: #cfcfcf;
    font-size: 24px;
    line-height: 1.36;
    flex: 0 1 36%;
    max-width: 36%;
}

.products-section--reverse .products-section__header {
    flex-direction: row-reverse;
}

.products-section--reverse .products-section__heading-inline {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.products-section--reverse .products-section__title {
    text-align: right;
}

.products-section--reverse .products-section__subtitle {
    text-align: right;
}

.products-section--reverse .products-section__description {
    padding-left: 16px;
    text-align: left;
}

.products-gallery-swiper-wrap {
    position: relative;
    padding: 0;
    overflow-x: clip;
}

.products-gallery-swiper-wrap .swiper {
    width: 100%;
    overflow: hidden;
}

.products-gallery-swiper-wrap + .products-gallery-swiper-wrap {
    margin-top: 14px;
}

.products-gallery-swiper-wrap .swiper-slide {
    height: 450px;
}

.products-gallery-swiper-wrap .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.4s ease;
}

.products-gallery-swiper-wrap .swiper-slide img:hover {
    filter: grayscale(0%) brightness(1);
}

.products-gallery-swiper-wrap .swiper-slide a,
.products-gallery-swiper-wrap .swiper-slide button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.products-gallery-card {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.products-gallery-card__play {
    position: absolute;
    right: 10px;
    bottom: 8px;
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}

.products-gallery-card:hover .products-gallery-card__play {
    transform: translateX(1px);
    opacity: 1;
    color: var(--site-accent);
}

.products-gallery-card__play-icon {
    width: 100%;
    height: 100%;
    opacity: 0.92;
    background-color: currentColor;
    -webkit-mask-image: url("../img/player-play-circle.svg");
    mask-image: url("../img/player-play-circle.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.products-gallery-hidden-link {
    display: none;
}

.products-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 30px;
    border: 0;
    background: transparent;
    z-index: 5;
    padding: 0;
}

.products-gallery-nav::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.products-gallery-nav--prev {
    left: 14px;
}

.products-gallery-nav--prev::before {
    left: 0;
    border-right: 13px solid #d10f1d;
}

.products-gallery-nav--next {
    right: 14px;
}

.products-gallery-nav--next::before {
    right: 0;
    border-left: 13px solid #d10f1d;
}

.products-section__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.8fr);
    gap: 22px;
    align-items: stretch;
}

.products-section__separator {
    width: 88px;
    height: 1px;
    margin: 52px auto;
    background: var(--site-accent);
    opacity: 0.95;
}

.products-section__featured {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1.1 / 1;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #242022;
    cursor: pointer;
}

.products-section__featured img,
.products-section__grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.products-section__featured:hover img,
.products-section__grid button:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}

.products-section__content {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.products-section__top {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 24px;
    margin: 0 0 18px;
}

.products-section__top .products-section__title {
    margin: 0;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.products-section__link {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.products-section__link:hover,
.products-section__link:focus-visible {
    color: var(--site-accent-soft);
}

.products-section__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    flex: 1 1 auto;
    min-height: 0;
    grid-auto-rows: auto;
    align-content: start;
}

.products-section__grid .products-gallery-card {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #242022;
    cursor: pointer;
}

.products-section__mobile-featured {
    display: none;
}

.products-section__media-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #242022;
}

/* =========================================================
   PAGE: CATEGORIA DE PRODUTOS
   ========================================================= */
.product-category-page {
    background: #000;
    padding: 96px 0 90px;
    overflow-x: hidden;
}

.product-category__header {
    max-width: 1100px;
    margin-bottom: 62px;
}

.product-category__title,
.product-category__description,
.product-category__description * {
    color: #fff !important;
}

.product-category__title {
    margin: 0 0 18px;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 500;
    line-height: 1;
}

.product-category__divider,
.product-category__separator {
    width: 88px;
    height: 1px;
    background: var(--site-accent);
    opacity: 0.95;
}

.product-category__divider {
    margin-bottom: 28px;
}

.product-category__description {
    font-size: 24px;
    line-height: 1.45;
}

.product-category__description p:last-child {
    margin-bottom: 0;
}

.product-category__separator {
    margin: 58px auto;
}

.product-category__product-title {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.1;
}

.product-category__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 28px 24px;
}

.product-category__media-card {
    min-width: 0;
}

.product-category__media-trigger {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: #fff;
    cursor: pointer;
}

.product-category__media-trigger img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.product-category__media-trigger:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
}

.product-category__media-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
}

.product-category__media-title {
    margin-top: 12px;
    color: #fff;
    font-size: 18px;
    line-height: 1.2;
}

/* =========================================================
   PAGE: CLIENTES
   ========================================================= */
.cases-showcase {
    background: #070709;
    padding: 64px 0 104px;
}

.blog-post-divider {
    width: 88px;
    height: 1px;
    margin: 88px auto;
    background: var(--site-accent);
    opacity: 0.95;
}

.case-card__banner {
    width: 100%;
    aspect-ratio: 16 / 5.2;
    margin-bottom: 30px;
    position: relative;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #d9d9d9;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.45s ease;
}

.case-card__banner:hover {
    filter: grayscale(0%) brightness(1);
}

.case-card__banner--link {
    text-decoration: none;
    padding: 0;
    border: 0;
    cursor: pointer;
}

.case-card__zoom {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: rgba(7, 7, 9, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.case-card__banner--link:hover .case-card__zoom {
    transform: scale(1.06);
    background: rgba(201, 162, 39, 0.88);
    border-color: var(--site-accent);
}

.case-card__zoom-icon {
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
}

.case-card__zoom-icon--video {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.case-card__zoom-icon-play {
    width: 100%;
    height: 100%;
    background-color: currentColor;
    -webkit-mask-image: url("../img/player-play-circle.svg");
    mask-image: url("../img/player-play-circle.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.case-card__gallery-link {
    display: none;
}

.case-card__content {
    max-width:960px;
    margin: 0 auto;
}

.case-card__title {
    margin: 18px 0 22px;
    color: #f5f7ff;
    font-size: 46px;
    line-height: 0.98;
    letter-spacing: 0.02em;
    text-align: center;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.case-card__text {
    margin: 0;
    color: #f0f0f0;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
}

.post-content,
.post-content * {
    color: #f0f0f0;
}

.post-content > :first-child {
    margin-top: 0;
}

.post-content > :last-child {
    margin-bottom: 0;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
    color: #fff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 400;
}

.post-content a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.post-content a:hover {
    color: #fff;
    opacity: 0.75;
}

.case-card__empty {
    color: #f0f0f0;
    font-size: 18px;
    text-align: center;
    padding: 28px 0;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 62px;
    color: #f5f7ff;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.blog-pagination__link {
    min-width: 116px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #f5f7ff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.blog-pagination__link:hover {
    background: var(--site-accent);
    border-color: var(--site-accent);
    color: #fff;
}

.blog-pagination__link.is-disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.blog-pagination__current {
    min-width: 58px;
    color: var(--site-accent);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-align: center;
}

/* =========================================================
   PAGE: NOSSA HISTORIA
   ========================================================= */
.about-story {
    background: #070709;
    padding: 44px 0 96px;
}

.about-story .container {
    max-width: 1320px;
}

.about-story__inner {
    padding: 0;
}

.about-story__header {
    margin: 0 0 92px;
    text-align: center;
}

.about-story__logo {
    margin: 0;
    position: relative;
}

.about-story__logo img {
    width: min(100%, 360px);
    height: auto;
    display: inline-block;
}

.about-story__logo::after {
    content: "";
    display: block;
    width: 88px;
    height: 2px;
    margin: 14px auto 22px;
    background: var(--site-accent);
}

.about-story__eyebrow {
    margin: 0;
    color: var(--site-accent);
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-weight: 600;
}

.about-story__item {
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.about-story__item + .about-story__item {
    margin-top: 52px;
}

@media (min-width: 992px) {
    .about-story__item + .about-story__item {
        position: relative;
        margin-top: 88px;
    }

    .about-story__item + .about-story__item::before {
        content: "";
        position: absolute;
        left: 50%;
        top: -44px;
        width: 88px;
        height: 1px;
        transform: translateX(-50%);
        background: var(--site-accent);
        opacity: 0.95;
    }
}

.about-story__item--image-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
}

.about-story__item--no-image,
.about-story__item--image-right.about-story__item--no-image {
    grid-template-columns: minmax(0, 1fr);
}

.about-story__item--image-right .about-story__media {
    order: 2;
}

.about-story__item--image-right .about-story__content {
    order: 1;
}

.about-story__item--no-image .about-story__content {
    order: initial;
    max-width: 100%;
}

.about-story__media {
    position: relative;
}

.about-story__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    background: #e8e8e8;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.45s ease;
}

.about-story__image--empty {
    background: rgba(255, 255, 255, 0.12);
    filter: none;
}

.about-story__item:hover .about-story__image,
.about-story__item:focus-within .about-story__image {
    filter: grayscale(0%) brightness(1);
}

.about-story__content {
    min-width: 0;
}

.about-story__title {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 600;
}

.about-story__html {
    color: #f1f1f1;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 21px;
    line-height: 1.55;
    font-weight: 300;
}

.about-story__html > *:first-child {
    margin-top: 0;
}

.about-story__html > *:last-child {
    margin-bottom: 0;
}

.about-story__html p,
.about-story__html ul,
.about-story__html ol,
.about-story__html blockquote {
    margin: 0 0 18px;
}

.about-story__html ul,
.about-story__html ol {
    padding-left: 1.3em;
}

.about-story__html li + li {
    margin-top: 8px;
}

.about-story__html strong,
.about-story__html b {
    color: #ffffff;
    font-weight: 600;
}

.about-story__html em,
.about-story__html i {
    font-style: italic;
}

.about-story__html a {
    color: var(--site-accent-soft);
    text-decoration: underline;
}

.about-story__html a:hover {
    color: #ffffff;
}

.about-story__html blockquote {
    padding-left: 18px;
    border-left: 2px solid var(--site-accent);
    color: #e0d5ba;
}

.about-story__html h2,
.about-story__html h3,
.about-story__html h4,
.about-story__html h5 {
    margin: 28px 0 14px;
    color: #ffffff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-weight: 500;
    line-height: 1.12;
}

.about-story__html h2 {
    font-size: 38px;
}

.about-story__html h3 {
    font-size: 31px;
}

.about-story__html h4 {
    font-size: 25px;
}

.about-story__html h5 {
    font-size: 21px;
}

.about-story__empty {
    color: #f0f0f0;
    font-size: 18px;
    text-align: center;
    padding: 28px 0;
}

.about-team {
    margin-top: 96px;
}

.about-team__divider {
    width: 88px;
    height: 1px;
    margin: 0 auto 44px;
    background: var(--site-accent);
    opacity: 0.95;
}

.about-team__header {
    margin: 0 0 44px;
}

.about-team__title {
    margin: 0;
    color: #ffffff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 500;
    text-align: center;
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 44px;
}

.about-team__card {
    display: grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.about-team__media {
    position: relative;
}

.about-team__image {
    width: 100%;
    aspect-ratio: 19 / 21;
    display: block;
    object-fit: cover;
    background: #e8e8e8;
    filter: grayscale(100%) brightness(0.78);
    transition: filter 0.45s ease;
}

.about-team__image--empty {
    background: rgba(255, 255, 255, 0.12);
    filter: none;
}

.about-team__card:hover .about-team__image,
.about-team__card:focus-within .about-team__image {
    filter: grayscale(0%) brightness(1);
}

.about-team__content {
    min-width: 0;
}

.about-team__name {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 500;
}

.about-team__description {
    margin: 0;
    color: #f1f1f1;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 300;
}

.about-team__role {
    margin: 12px 0 0;
    color: var(--site-accent);
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-team__empty {
    color: #f0f0f0;
    font-size: 18px;
    text-align: center;
    padding: 28px 0 0;
}

/* =========================================================
   PAGE: CONTATO
   ========================================================= */
.contact-page {
    background: #070709;
    padding: 82px 0 118px;
}

.contact-page__intro {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 42px;
    text-align: center;
}

.contact-page__title {
    margin: 0 0 24px;
    color: #f7f7f7;
    font-family: "Raleway", "Poppins", sans-serif;
    font-size: 54px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-weight: 300;
    text-transform: uppercase;
}

.contact-page__title::after {
    content: "";
    display: block;
    width: 88px;
    height: 2px;
    margin: 16px auto 0;
    background: var(--site-accent);
}

.contact-page__title-strong {
    font-weight: 600;
}

.contact-page__lead {
    margin: 0;
    color: #e5e5e5;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.45;
}

.contact-page .row {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form__label {
    display: inline-block;
    margin-bottom: 6px;
    color: #f2f2f2;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.contact-form__alert {
    margin: 0 0 14px;
    padding: 10px 12px;
    border: 1px solid;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
}

.contact-form__alert--success {
    border-color: #2f7d44;
    color: #d3ffd9;
    background: rgba(47, 125, 68, 0.15);
}

.contact-form__alert--error {
    border-color: #9e2f2f;
    color: #ffd3d3;
    background: rgba(158, 47, 47, 0.16);
}

.contact-form__control {
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 0;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 18px;
    padding: 12px 24px;
    text-align: left;
}

.contact-form__control,
.contact-form__control:focus {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.contact-form__control:-webkit-autofill,
.contact-form__control:-webkit-autofill:hover,
.contact-form__control:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.06) inset;
    transition: background-color 9999s ease-in-out 0s;
}

.contact-form__control:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(209, 15, 29, 0.2);
}

.contact-form__control::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.contact-form__control--textarea {
    border-radius: 0;
    min-height: 150px;
    resize: vertical;
}

.contact-form__actions {
    display: flex;
    justify-content: stretch;
}

.contact-form__submit {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    min-height: 56px;
    padding: 10px 18px;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.contact-form__submit:hover {
    border-color: var(--site-accent);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.contact-form__submit-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
}

.contact-form__submit-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.contact-form__privacy {
    margin: 12px 0 0;
    color: #9a9a9a;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    text-align: center;
}

.contact-info {
    padding-top: 6px;
}

.contact-info__line {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

.contact-info__map-trigger {
    margin: -4px 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #cfcfcf;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info__map-trigger:hover {
    color: #ffffff;
}

.contact-info__map-icon {
    width: 21px;
    height: 21px;
    display: inline-flex;
}

.contact-info__map-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.contact-info__line--alt,
.contact-info__line--alt a {
    color: #818181;
    text-decoration: none;
}

.contact-info__line .contact-info__label {
    color: #ffffff;
}

.contact-info__line a {
    color: #818181;
    text-decoration: none;
}

.contact-info__line a:hover,
.contact-info__line a:active {
    color: #fff;
}

.contact-info__social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.contact-info__social a {
    width: 28px;
    height: 28px;
    border: 1px solid #7a7a7a;
    background: #f2f2f2;
    color: #545454;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.contact-info__social a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-info__social a:hover {
    border-color: var(--site-accent);
    color: #1a1a1a;
    background: #ffffff;
    transform: translateY(-1px);
}

.contact-map-modal .modal-content {
    background: #0d0d0f;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
}

.contact-map-modal .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 16px;
}

.contact-map-modal .modal-title {
    margin: 0;
    color: #f1f1f1;
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.contact-map-modal .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.88;
}

.contact-map-modal .modal-body {
    padding: 0;
}

.contact-map-modal .modal-body iframe {
    display: block;
    width: 100%;
    height: 680px;
    border: 0;
}

/* =========================================================
   RESPONSIVE RULES
   ========================================================= */
@media (max-width: 991.98px) {
    .site-navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }

    .site-main {
        padding-top: 90px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        right: 10px;
        bottom: 10px;
    }

    .floating-whatsapp svg {
        width: 24px;
        height: 24px;
    }

    .site-navbar .navbar-collapse {
        margin-top: 12px;
        padding-top: 8px;
        border-top: 1px solid #151515;
    }

    .site-navbar .nav-link {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .site-navbar .nav-link:not(.dropdown-toggle).is-active::after,
    .site-navbar .nav-link:not(.dropdown-toggle):hover::after {
        left: 50%;
        right: auto;
        width: 44%;
        transform: translateX(-50%);
    }

    .site-navbar .dropdown-toggle.is-active::before,
    .site-navbar .dropdown-toggle:hover::before {
        left: 50%;
        right: auto;
        width: 44%;
        transform: translateX(-50%);
    }

    .footer-contact {
        margin-top: 18px;
        padding-top: 22px;
        padding-left: 0;
    }

    .footer-contact::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 88px;
        height: 2px;
        background: var(--site-accent);
    }

    .home-hero__play-icon {
        width: 62px;
        height: 62px;
        border-width: 4px;
    }

    .home-hero__play-icon svg {
        width: 26px;
        height: 26px;
    }

    .home-hero__content {
        min-height: 0;
        padding-top: 42px;
        padding-bottom: 52px;
    }

    .home-hero__html-shell {
        background:
            linear-gradient(180deg, #111111 0%, #0b0b0b 54%, #060606 100%);
    }

    .home-hero__image {
        min-height: 0;
        max-height: none;
    }

    .home-hero__eyebrow {
        margin-bottom: 14px;
        font-size: 12px;
        letter-spacing: 0.22em;
    }

    .home-hero__title {
        font-size: 36px;
        line-height: 1.04;
        letter-spacing: -0.02em;
        max-width: 92%;
    }

    .home-hero__subtitle {
        margin-top: 14px;
        font-size: 24px;
        line-height: 1.18;
    }

    .home-hero__text {
        margin-top: 18px;
        font-size: 17px;
        line-height: 1.6;
    }

    .home-hero__actions {
        margin-top: 24px;
    }

    .home-hero__button {
        width: 100%;
        justify-content: center;
    }

    .home-stats__value {
        font-size: 36px;
        line-height: 0.95;
    }

    .home-stats__label {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.15;
        letter-spacing: 0;
    }

    .home-gallery-block + .home-gallery-block {
        margin-top: 34px;
    }

    .home-gallery-row {
        grid-template-columns: 1fr;
    }

    .home-gallery-intro-card {
        min-height: 0;
        height: auto;
    }

    .home-gallery-swiper-wrap .swiper-slide {
        min-height: 330px;
        height: 330px;
    }

    .home-gallery-intro-card__content {
        padding: 26px 18px 22px;
        justify-content: flex-start;
        gap: 18px;
    }

    .home-gallery-intro-card__title {
        font-size: 32px;
    }

    .home-gallery-intro-card__text,
    .home-gallery-intro-card__link {
        font-size: 15px;
        line-height: 1.3
    }

    .home-gallery-intro-card__text {
        max-width: 100%;
    }

    .home-gallery-intro-card__link {
        align-self: flex-end;
        margin-top: 4px;
        text-align: right;
    }

    .home-gallery-card__play {
        right: 8px;
        bottom: 7px;
        width: 28px;
        height: 28px;
    }

    .home-whatsapp-cta {
        margin-top: 0;
    }

    .home-whatsapp-cta .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .home-whatsapp-cta__text {
        font-size: 24px;
    }

    .home-whatsapp-cta__button {
        font-size: 15px;
    }

    .home-clients-showcase {
        padding: 36px 0 48px;
    }

    .home-clients-showcase__title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .home-clients-item {
        min-height: 110px;
    }

    .home-clients-item img {
        max-height: 90px;
    }

    .products-showcase {
        padding: 64px 0 44px;
    }

    .products-intro {
        margin-bottom: 46px;
    }

    .products-intro__title {
        font-size: 38px;
    }

    .products-intro__text {
        font-size: 19px;
    }

    .products-section + .products-section {
        margin-top: 36px;
    }

    .products-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
    }

    .products-section__heading-inline {
        width: 100%;
        justify-content: flex-start;
        gap: 6px;
        align-items: center;
    }

    .products-section__divider {
        min-height: 46px;
        margin: 0 6px;
    }

    .products-section__title {
        font-size: 34px;
        line-height: 1;
    }

    .products-section__subtitle {
        font-size: 20px;
        line-height: 1.12;
        text-align: left;
    }

    .products-section__description {
        font-size: 19px;
        max-width: 100%;
        flex-basis: auto;
    }

    .products-section--reverse .products-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-section--reverse .products-section__heading-inline {
        justify-content: flex-start;
    }

    .products-section--reverse .products-section__title,
    .products-section--reverse .products-section__subtitle,
    .products-section--reverse .products-section__description {
        text-align: left;
    }

    .products-gallery-swiper-wrap .swiper-slide {
        height: 230px;
    }

    .products-gallery-card__play {
        right: 8px;
        bottom: 7px;
        width: 28px;
        height: 28px;
    }

    .products-section__layout {
        grid-template-columns: minmax(210px, 0.85fr) minmax(0, 1.8fr);
        gap: 16px;
    }

    .products-section__top {
        gap: 14px;
        margin-bottom: 12px;
    }

    .products-section__top .products-section__title {
        font-size: 34px;
    }

    .products-section__link {
        font-size: 19px;
    }

    .products-section__grid {
        gap: 10px;
    }

    .cases-showcase {
        padding: 40px 0 68px;
    }

    .case-card + .case-card {
        margin-top: 40px;
        padding-top: 34px;
    }

    .case-card__banner {
        aspect-ratio: 16 / 8.2;
    }

    .case-card__zoom {
        right: 14px;
        bottom: 14px;
        width: 48px;
        height: 48px;
    }

    .case-card__zoom-icon {
        font-size: 28px;
    }

    .case-card__content {
        max-width: 100%;
    }

    .case-card__title {
        margin: 14px 0 16px;
        font-size: 46px;
    }

    .case-card__text {
        font-size: 24px;
        line-height: 1.32;
    }

    .about-story {
        padding: 30px 0 60px;
    }

    .about-story__inner {
        padding: 0;
    }

    .about-story__header {
        margin-bottom: 36px;
    }

    .about-story__logo::after {
        margin-top: 12px;
        margin-bottom: 18px;
    }

    .about-story__logo img {
        width: min(100%, 250px);
    }

    .about-story__item,
    .about-story__item--image-right {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-story__item + .about-story__item {
        margin-top: 40px;
    }

    .about-story__item--image-right .about-story__media,
    .about-story__item--image-right .about-story__content {
        order: initial;
    }

    .about-story__title {
        font-size: 28px;
    }

    .about-story__html {
        font-size: 18px;
        line-height: 1.5;
    }

    .about-story__html h2 {
        font-size: 30px;
    }

    .about-story__html h3 {
        font-size: 25px;
    }

    .about-story__html h4 {
        font-size: 21px;
    }

    .about-story__html h5 {
        font-size: 18px;
    }

    .about-team {
        margin-top: 60px;
    }

    .about-team__divider {
        margin-bottom: 28px;
    }

    .about-team__header {
        margin-bottom: 28px;
    }

    .about-team__title {
        font-size: 34px;
    }

    .about-team__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-team__card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-team__image {
        aspect-ratio: 1 / 1;
    }

    .about-team__name {
        font-size: 24px;
    }

    .about-team__description {
        font-size: 17px;
        line-height: 1.45;
    }

    .about-team__role {
        font-size: 13px;
    }

    .contact-page {
        padding: 52px 0 76px;
    }

    .contact-page__intro {
        margin-bottom: 28px;
    }

    .contact-page__title {
        font-size: 34px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .contact-page__title::after {
        margin-top: 12px;
    }

    .contact-page__lead {
        font-size: 18px;
        line-height: 1.4;
    }

    .contact-form__label {
        font-size: 14px;
        font-weight: 400;
    }

    .contact-form__control {
        min-height: 46px;
        font-size: 16px;
    }

    .contact-form__control--textarea {
        min-height: 132px;
    }

    .contact-form__submit {
        min-height: 50px;
        font-size: 16px;
        padding: 10px 14px;
    }

    .contact-form__submit-icon,
    .contact-form__submit-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-form__privacy {
        margin-top: 10px;
        font-size: 11px;
    }

    .contact-info__line {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .contact-info {
        position: relative;
        margin-top: 22px;
        padding-top: 26px;
    }

    .contact-info::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 88px;
        height: 2px;
        background: var(--site-accent);
    }

    .contact-map-modal .modal-body iframe {
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    .home-hero__image-wrap {
        min-height: 0;
    }

    .products-section__layout {
        display: block;
    }

    .products-section__content {
        height: auto;
        display: block;
    }

    .products-section__featured {
        display: none;
    }

    .products-section__top .products-section__title {
        font-size: 30px;
    }

    .products-section__link {
        font-size: 18px;
    }

    .products-section__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .products-section__grid .products-gallery-card {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .products-section__mobile-featured {
        display: block;
    }

    .product-category-page {
        padding: 64px 0 64px;
    }

    .product-category__header {
        margin-bottom: 42px;
    }

    .product-category__description {
        font-size: 19px;
    }

    .product-category__product-title {
        font-size: 29px;
    }

    .product-category__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px 14px;
    }
}

@media (min-width: 992px) {
    .home-galleries .container {
        max-width: 1360px;
    }

    .home-hero__video-wrap {
        max-width: 1920px;
        height: 640px;
        margin: 0 auto;
        aspect-ratio: auto;
    }

    .home-hero__image-wrap {
        max-width: 1920px;
        margin: 0 auto;
    }

    .home-hero__content {
        max-width: 1920px;
        margin: 0 auto;
    }

    .home-gallery-intro-card,
    .home-gallery-swiper-wrap .swiper-slide {
        min-height: 370px;
        height: 370px;
    }

    .home-clients-showcase .container {
        max-width: 1360px;
    }

    .contact-page__info-col {
        display: flex;
        align-items: center;
        justify-content: center;
        align-self: stretch;
    }

    .contact-info {
        position: relative;
        padding-left: 26px;
    }

    .contact-info::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 2px;
        height: 280px;
        transform: translateY(-50%);
        background: var(--site-accent);
    }

    .case-card + .case-card {
        margin-top: 86px;
        padding-top: 68px;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        right: 24px;
        bottom: 24px;
    }

    .floating-whatsapp svg {
        width: 38px;
        height: 38px;
    }

    .site-footer {
        min-height: 200px;
    }

    .about-story__header {
        padding-top: 72px;
        margin-bottom: 80px;
        min-height: 170px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-story__logo::after {
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .site-footer .row {
        align-items: center !important;
    }

    .footer-menu,
    .footer-contact {
        min-height: 200px;
        display: flex;
        flex-direction: column;
    }

    .footer-menu,
    .footer-contact {
        justify-content: center;
    }

    .footer-menu::before,
    .footer-contact::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 2px;
        height: 200px;
        transform: translateY(-50%);
        background: var(--site-accent);
    }
}

@media (max-width: 991.98px) {
    .home-stats {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .home-stats__item {
        padding: 18px 14px 16px;
    }
}

@media (min-width: 580px) and (max-width: 991.98px) {
    .home-stats__grid {
        justify-content: center;
        width: min(100%, 980px);
        margin-left: auto;
        margin-right: auto;
    }

    .home-stats__col {
        width: 33.333333%;
        flex: 0 0 33.333333%;
    }
}

@media (min-width: 992px) {
    .home-stats__grid {
        width: min(100%, 1120px);
        margin-left: auto;
        margin-right: auto;
    }
}
