/* Reset and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #fff;
    transition: background-color 0.6s ease;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 767px) {
    .container {
        padding: 0 32px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    color: #1F2127;
    font-weight: 400;
    letter-spacing: 6px;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: #1F2127;
    font-weight: 400;
}

/* Typography Tools */
.section-title {
    font-size: 50px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 30px;
    color: #666;
    margin-bottom: 40px;
}

.interno-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 15%;
    color: rgba(31, 33, 39, 1);
}

.interno-subtitle {
    margin: 0;
    font-size: 30px;
    line-height: 36px;
    font-weight: 400;
    color: #8a8a8a;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #333;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

.mt-40 {
    margin-top: 40px;
}

/* Grid System */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}




/* ==== HEADER ==== */
.site-header {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 10001;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header.scrolled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

.site-header-inner.home-sticky {
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header-inner.home-sticky.active {
    transform: translateY(0);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    height: 80px;
}

.header-left {
    display: flex;
    height: 100%;
}

.logo {
    background: #1c1d21;
    width: 250px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    height: 16px;
}

.menu-toggle {
    background: #fff;
    border: none;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-right {
    display: flex;
    height: 100%;
}

.search-toggle {
    background: #1c1d21;
    border: none;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ==== FULL SCREEN MENU ==== */
.fullscreen-menu-overlay {
    position: fixed;
    margin-top: 130px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, #1F2127 0%, rgba(31, 33, 39, 0) 100%), url('../img/bg_menu.png');
    background-size: cover;
    background-position: center;
    z-index: 9999;
    transition: top 0.5s ease-in-out;
    display: none;
    flex-direction: column;
}

.fullscreen-menu-overlay.open {
    display: flex;
}

/* Menu Header (Logo and Close Btn) */
.menu-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
}

.menu-top-bar .logo-white a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
}

.menu-close {
    background: #fff;
    border: none;
    font-size: 1.5rem;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ==== SEARCH OVERLAY HOME ==== */
.search-overlay-home {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.search-overlay-home.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.search-overlay-top {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 80px;
}

.search-overlay-left {
    display: flex;
    align-items: stretch;
}

/* Hamburger inside search */
.hamburger-static {
    background: #fff;
    width: 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-static span {
    display: block;
    width: 24px;
    height: 1px;
    background: #000;
}

.search-close-btn {
    background: #1c1d21;
    color: #fff;
    border: none;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-overlay-bottom {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.search-overlay-bottom .search-form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-overlay-bottom .search-field {
    border: none;
    width: 100%;
    font-size: 24px;
    font-weight: 300;
    color: #111;
    outline: none;
}

.search-overlay-bottom .search-field::placeholder {
    color: #ccc;
    font-weight: 300;
}

.search-overlay-bottom .search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==== SEARCH OVERLAY INTERNAL ==== */
.search-overlay-internal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff;
    z-index: 10006;
    display: flex;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.search-overlay-internal.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.search-internal-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.search-overlay-internal .search-form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 40px;
}

.search-overlay-internal .search-field {
    border: none;
    font-size: 20px;
    font-weight: 300;
    width: 100%;
    outline: none;
}

.search-internal-actions {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.search-overlay-internal .search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close-internal {
    background: #1c1d21;
    border: none;
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px 10vw;
}

.lang-switcher {
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
}

.lang-switcher a {
    color: rgba(255, 255, 255, 0.5);
    margin-right: 20px;
    font-size: 0.9rem;
}

.lang-switcher a.active {
    color: #fff;
}

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

.primary-navigation li {
    margin-bottom: 20px;
}

.primary-navigation a {
    color: #ccc;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    display: block;
    position: relative;
    padding-left: 0;
}

.primary-navigation a:hover {
    color: #fff;
    padding-left: 50px;
}

.primary-navigation a:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 35px;
    height: 35px;
    background: url('../img/Simbolo.png') no-repeat center center;
    background-size: contain;
    opacity: 0;
    transition: all 0.3s ease;
}

.primary-navigation a:hover:before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* ==== HERO BANNER ==== */
.hero-banner {
    position: relative;
    height: 100vh;
    width: 100%;
}

.bg-video,
.bg-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bg-placeholder {
    background: #333;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* darkens video */
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    column-gap: 20px;
}

.banner-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.custom-banner-acf-text {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;

    & em {
        font-weight: 250;
    }
}

.banner-left-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding-left: 20px;
    max-width: 800px;
}

.banner-icon {
    margin: 30px 0;
}

.banner-icon img {
    height: 45px;
}

.banner-sub-logo {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 1.5rem;
    color: #ccc;
    margin: 0 0 10px 0;
}

.banner-headline {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.banner-action-btn {
    margin-top: 30px;
    border-color: #fff;
}

.banner-action-btn img {
    filter: invert(1);
    height: 12px;
}

.banner-action-btn:hover {
    background: #fff;
}

.banner-action-btn:hover img {
    filter: none;
}

.video-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 10;
}

.play-pause-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-pause-btn:hover {
    border-color: #fff;
}

.video-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 4;
}

.play-pause-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.play-pause-btn img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.play-pause-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==== HOME SECTIONS ==== */
.home-section {
    padding: 80px 0;
}

/* Card images */
.img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    /* Square by default */
}

.img-wrapper img {
    height: 100%;
    transition: transform 0.5s ease;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    background: #ccc;
}

.card:hover .img-wrapper img {
    transform: scale(1.05);
    /* Zoom effect */
}

/* Produtos */
.product-card .img-wrapper {
    aspect-ratio: 1/1.2;
    /* Taller para grid normal, mas resetado no slider abaixo */
}

.drag-card .img-wrapper {
    aspect-ratio: auto !important;
    width: 100%;
    height: 100%;
}

/* Referências Layout */
.referencias-layout {
    display: flex;
    width: 100%;
    padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
}

.ref-text-col {
    flex: 0 0 320px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
}

.ref-slider-col {
    flex: 1;
    min-width: 0;
}

.ref-slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.ref-slider {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-right: 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.ref-slider::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

/* Calculando 2.5 cards baseados no espaço residual */
.ref-slide-item {
    flex: 0 0 auto;
    /* width: clamp(350px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 370px) / 2.5), 650px);
    height: clamp(230px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 370px) / 2.5 * 0.65), 450px); */
    position: relative;
    overflow: hidden;
}

.ref-link-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.ref-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ref-slide-item:hover .ref-static-img {
    transform: scale(1.05);
}

/* Fade Gradients */
.ref-gradient-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ref-gradient-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 1;
    transition: opacity 0.5s ease;
    border-left: 1px solid #fff;
}

.ref-slide-item:hover .ref-gradient-right {
    opacity: 1;
}

/* Info */
.ref-content-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
    color: #fff;
    pointer-events: none;
}

.ref-title {
    font-size: 26px;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0 0 8px 0;
}

.ref-excerpt {
    font-size: 13px;
    color: #ccc;
    font-weight: 300;
    display: block;
}

/* Plus Icon Overlay */
.ref-plus-icon {
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%) scale(0.5);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    filter: brightness(10);
}

.ref-plus-icon img {
    height: 50px;
    filter: invert(1);
}

.ref-slide-item:hover .ref-plus-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Lojas */
.store-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info-box {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.store-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.store-address {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ==== BLOG SLIDER EXPANSIVO ==== */
.blog-slider-wrapper {
    width: 100%;
    /* Alinha à esquerda com o container principal e deixa sangrar pela direita */
    padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
    overflow: hidden;
}

.blog-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-right: 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.blog-slider::-webkit-scrollbar {
    display: none;
}

/* Card Base */
.blog-slide-card {
    flex: 0 0 auto;
    width: 380px;
    height: 380px;
    background: #fff;
    border: 1px solid #ddd;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s;
    display: flex;
    cursor: pointer;
}

/* Hover: Card cresce horizontalmente */
.blog-slide-card:hover {
    width: 680px;
    border-color: #111625;
    /* Cor escura do hover */
}

/* Elementos de Fundo (Hover) */
.blog-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    /* Cobre apenas a área inicial do texto */
    height: 100%;
    background-color: #111625;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-hover-image {
    position: absolute;
    top: 0;
    left: 380px;
    /* Começa a revelar onde o texto termina */
    width: calc(100% - 380px);
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-hover-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-slide-card:hover .blog-hover-bg,
.blog-slide-card:hover .blog-hover-image {
    opacity: 1;
}

/* Conteúdo dentro do Card */
.blog-card-content {
    position: relative;
    z-index: 2;
    width: 380px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-shrink: 0;
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Ícone de Mais */
.blog-plus-icon {
    width: 35px;
    height: 35px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.blog-plus-icon img {
    height: 35px;
    filter: brightness(0);
    /* Força a cor preta no estado normal */
    transition: filter 0.4s ease;
}

/* Tag de Categoria */
.blog-cat-badge:nth-child(even) {
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    padding: 10px 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;

}

.blog-cat-badge.even {
    color: #63ADF2;
    border: 1px solid #63ADF2;
}

.blog-cat-badge.odd {
    color: #7067CF;
    border: 1px solid #7067CF;
}

/* Textos e Títulos */
.blog-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    gap: 15px;
}

.blog-title {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
    color: #111;
    transition: color 0.4s ease;
    text-transform: uppercase;
    width: 70%;
    height: 80px;
}

.blog-date {
    font-size: 17px;
    width: 65px;
    height: auto;
    color: #aaa;
    text-transform: uppercase;
    transition: color 0.4s ease;
    text-align: end;
}

.blog-excerpt {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    transition: color 0.4s ease;
}

/* Transições de Cores no Hover do Card */
.blog-slide-card:hover .blog-title,
.blog-slide-card:hover .blog-date,
.blog-slide-card:hover .blog-excerpt {
    color: #fff;
}

.blog-slide-card:hover .blog-plus-icon {
    border-color: #fff;
}

.blog-slide-card:hover .blog-plus-icon img {
    filter: brightness(0) invert(1);
    /* Fica branco sobre o fundo azul escuro */
}

.blog-slide-card:hover .blog-tag {
    opacity: 0;
    /* Esconde a tag para deixar limpo igual na imagem de referência */
}

.blog-tag {
    font-size: 11px;
    font-weight: 500;
    border: 1px solid;
    border-radius: 4px;
    padding: 6px 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    background: #fff;
}

/* ==== NEW LAYOUT STYLES ==== */
.dark-bg {
    background-color: #1a1b1f;
    color: #fff;
}

.text-white {
    color: #fff;
}

.text-gray {
    color: #999;
}

.align-center {
    align-items: center;
}

.relative-container {
    position: relative;
}

/* Custom Buttons & Icons */
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    border: 2px solid #333;
    padding: 10px 30px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.dark-bg .btn-outline-custom {
    border-color: #fff;
    color: #fff;
}

.dark-bg .btn-outline-custom img {
    filter: invert(1);
}

.btn-outline-custom img {
    height: 17px;
    margin-left: 15px;
}

.btn-outline-custom:hover {
    background: #333;
    color: #fff;
}

.btn-outline-custom:hover img {
    filter: invert(1);
}

.dark-bg .btn-outline-custom:hover {
    background: #fff;
    color: #1a1b1f;
}

.btn-icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
}

.btn-icon-square img {
    height: 18px;
    filter: invert(0);
}

.btn-icon-square:hover {
    background: #fff;
}

.btn-icon-square:hover img {
    filter: invert(1);
}

/* Expansão do Botão para a Direita */
.btn-expand-right {
    justify-content: flex-start;
    padding: 0 20px;
    width: 60px;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    text-decoration: none;
}

.btn-expand-right img {
    position: absolute;
    right: 20px;
}

.btn-expand-right .btn-text {
    opacity: 0;
    white-space: nowrap;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-expand-right:hover {
    width: 170px;
}

.btn-expand-right:hover .btn-text {
    opacity: 1;
    color: #000;
}

/* Transição suave do Zoom nas seções maiores (Franqueado) */
.franqueado-banner .bg-placeholder img {
    transition: transform 0.6s ease;
}

.franqueado-banner:hover .bg-placeholder img {
    transform: scale(1.05);
}

.section-divider {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 60px 0 20px 0;
}

/* Card Overlays */
.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.card-inside-title {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin: 0;
}

.card-overlay-btn {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    /* Aumentei um pouco pro clique ficar melhor inicial */
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 10;
    padding: 0 20px;
    transition: all 0.4s ease;
    overflow: hidden;
    box-sizing: border-box;
    text-decoration: none;
}

.card-overlay-btn img {
    height: 14px;
    flex-shrink: 0;
    transition: opacity 0.3s;
}

.card-overlay-btn .btn-text {
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    margin-right: 15px;
    /* Space from the arrow */
    transition: opacity 0.4s ease;
}

.drag-card:hover .card-overlay-btn {
    width: 160px;
    border-color: #fff;
}

.drag-card:hover .card-overlay-btn .btn-text {
    opacity: 1;
}

/* Slider de Produtos */
.produtos-slider-wrapper {
    width: 100%;
    /* Alignment that calculates the container margin to let the slider stick to the left, but be infinite to the right */
    padding-left: max(40px, calc((100vw - 1280px) / 2 + 40px));
    overflow: hidden;
}

.produtos-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    padding-right: 40px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
}

.produtos-slider::-webkit-scrollbar {
    display: none;
    /* Chrome */
}

.drag-card {
    flex: 0 0 auto;
    /* Calcula 2.5 cards + gaps preenchendo o espaço exato visível de slider restando. O :hover manterá a proporção de 4:3 adicionando o espaço a width sem quebrar o layout */
    width: clamp(380px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5), 520px);
    height: clamp(380px, calc((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5), 520px);
    position: relative;
    overflow: hidden;
    transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.drag-card:hover {
    /* 4:3 da largura normal = Width * 1.333 */
    width: clamp(506px, calc(((100vw - max(40px, calc((100vw - 1280px) / 2 + 40px)) - 60px) / 2.5) * 1.333), 693px);
}

.prod-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s;
}

.prod-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.drag-card:hover .prod-hover-video {
    opacity: 1;
    /* Transiciona do poster para o video via CSS opacity + Play via JS */
}

/* Slider Controls na Base */
.slider-controls-row {
    display: flex;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 60px;
}

.slider-line {
    flex: 1;
    height: 1px;
    background-color: #333;
}

.slider-next-arrow {
    width: 50px;
    height: 50px;
    border: 1px solid #333;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 15px;
    /* Distância da linha pro quadrado do botão */
    transition: all 0.3s;
}

.slider-next-arrow:hover {
    background: #333;
}

.slider-next-arrow:hover img {
    filter: invert(1);
}

.slider-next-arrow img {
    height: 14px;
}

/* Scroll down Icon */
.scroll-down-icon {
    position: absolute;
    bottom: 40px;
    left: 100px;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    z-index: 3;
    /* animation: bounce 2s infinite; */
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-15px) translateX(-50%);
    }

    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

/* Blog specific */
.blog-card h3 a {
    text-transform: uppercase;
}

.blog-meta .category {
    font-size: 0.7rem;
    color: #333;
    border: 1px solid #ddd;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
}

/* Store Specific */
.store-info-box {
    color: #111;
}

.lojas-section {
    padding-bottom: 0px;
}

.lojas-section .container {
    padding-bottom: 80px;
}

/* ==== FOOTER ==== */
.site-footer {
    background: url('../img/bg_footer.png') no-repeat center center / cover;
    color: #fff;
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 21, 27, 0.85);
    /* Dark overlay */
    z-index: 1;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-title {
    font-size: 50px;
    font-weight: 300;
    letter-spacing: 5px;
    margin: 0;
    color: #fff;
}

.btn-contact-expand {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    width: 60px;
    height: 60px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.btn-contact-expand .btn-text {
    opacity: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #fff;
    transition: opacity 0.3s;
    position: absolute;
    left: 40px;
}

.btn-contact-expand img {
    height: 28px;
    transition: transform 0.5s;
}

.btn-contact-expand:hover {
    width: 320px;
    justify-content: flex-start;
    padding-left: 40px;
}

.btn-contact-expand:hover .btn-text {
    opacity: 1;
}

.btn-contact-expand:hover img {
    transform: translateX(230px);
}

.footer-separator {
    width: 1px;
    height: 150px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    color: #ccc;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s;
    text-decoration: none;
}

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

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.footer-contact-col .info-label {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    margin-bottom: -5px;
}

.footer-contact-col .address {
    font-size: 13px;
    font-weight: 300;
    color: #ccc;
    line-height: 1.6;
}

.footer-contact-col .newsletter-link,
.footer-contact-col .email-link {
    font-size: 13px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact-col .email-link {
    text-decoration: underline;
    margin-top: -10px;
}

.footer-contact-col .phone {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}

.footer-social-col {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 5px;
}

.footer-social-col .social-icon img {
    height: 30px;
    transition: opacity 0.3s;
}

.footer-social-col .social-icon:hover img {
    opacity: 1;
}


