@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
    --primary: #1a1a1a;
    --secondary: #FED403;
    --light: #ffffff;
    --dark: #121212;
    --gray: #5a5959;
    --black: #000; /* ADICIONADO: evitar var(--black) undefined */
    --transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cuprum', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
    padding-top: var(--navbar-h);
  }
  
  /* Títulos */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Cuprum', sans-serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.6em;
  }
  
  /* Ajustes finos */
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.4rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark); /* CORRIGIDO: usava var(--black) sem definir */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.preloader-logo {
    width: 200px;
}

.logo-text {
    font-family: 'Cuprum', sans-serif;
    font-size: 36px;
    font-weight: 700;
    fill: var(--light);
    letter-spacing: 2px;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    background-color: rgba(200, 169, 126, 0.5);
}

.cursor-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1px solid var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(200, 169, 126, 0.1);
    border-width: 2px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 200;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cuprum', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--light);
}

.menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 101;
}

.menu-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 8px;
    
    color: var(--light);
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
}

.hamburger span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--light);
    transition: var(--transition);
}

.hamburger span:first-child {
    top: 0;
}

.hamburger span:last-child {
    bottom: 0;
}

.menu-toggle.active .hamburger span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* === Barra preta fixa no topo === */
/* Barra preta fixa por baixo do conteúdo do header */
.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--navbar-h);
    z-index: 1000;
    background: transparent;
  }
  
  /* fundo escuro da navbar */
  .navbar::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #2b2929d7;
    z-index: 0;
  }
  
  /* conteúdo acima do fundo */
  .navbar > .container{
    position: relative;
    z-index: 1;
  }
  
  /* opcional: altura “visual” da faixa (se quiseres mais alta) */
  .navbar{ min-height: 80px; }

/* Right-panel Menu */
.fullscreen-menu {
    position: fixed;
    top: 80px;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: calc(100% - 80px);
    visibility: hidden;
    opacity: 0;
    transform: translateX(40px);
    z-index: 3000;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e8e8e8;
    opacity: 1;
}

.menu-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 48px;
    overflow-y: auto;
}

.menu-wrapper {
    width: 100%;
}

.main-menu {
    margin-bottom: 40px;
    text-align: left;
}

.menu-item {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.main-menu .menu-item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fullscreen-menu.active .menu-item {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-item:nth-child(1) { transition-delay: 0.05s; }
.fullscreen-menu.active .menu-item:nth-child(2) { transition-delay: 0.10s; }
.fullscreen-menu.active .menu-item:nth-child(3) { transition-delay: 0.15s; }
.fullscreen-menu.active .menu-item:nth-child(4) { transition-delay: 0.20s; }
.fullscreen-menu.active .menu-item:nth-child(5) { transition-delay: 0.25s; }
.fullscreen-menu.active .menu-item:nth-child(6) { transition-delay: 0.30s; }
.fullscreen-menu.active .menu-item:nth-child(7) { transition-delay: 0.35s; }
.fullscreen-menu.active .menu-item:nth-child(8) { transition-delay: 0.40s; }
.fullscreen-menu.active .menu-item:nth-child(9) { transition-delay: 0.45s; }

.menu-item a {
    display: block;
    font-family: 'Cuprum', sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.menu-item a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--secondary);
    display: flex;
    align-items: center;
    padding: 12px 0;
    box-sizing: border-box;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-item a:hover::before {
    transform: translateY(0);
}

.menu-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.contact-info {
    color: var(--primary);
    opacity: 0.7;
}

.contact-info p {
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.65, 0, 0.35, 1);
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

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

.slide-inner {
    max-width: 800px;
}

.slide-title {
    font-size: 72px;
    color: #ffffff;
    text-shadow: -1px 1px 0 #2e2e2e, 1px 1px 0 #2e2e2e, 1px -1px 0 #2e2e2e;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Cuprum', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 26px;
    color: var(--secondary);
    opacity: 1;
        text-shadow: -1px 1px 0 #2e2e2e, 1px 1px 0 #2e2e2e, 1px -1px 0 #2e2e2e;

    margin-bottom: 25px;
    max-width: 500px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-explore svg {
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.btn-explore:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-explore:hover svg {
    stroke: var(--primary);
    transform: translateX(5px);
}

/* SCOPED paginação do HERO para evitar conflito com outras sliders */
.hero .swiper-pagination {
    position: absolute;
    right: 50px;
    bottom: 50px;
    left: auto;
    width: auto;
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 5px 0;
    background: transparent;
    border: 1px solid var(--light);
    opacity: 0.5;
    transition: var(--transition);
}

.hero .swiper-pagination-bullet-active {
    background: var(--light);
    opacity: 1;
    transform: scale(1.2);
}

.swiper-controls {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    z-index: 10;
}

.swiper-button-prev,
.swiper-button-next {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    cursor: pointer;
    transition: var(--transition);
}

.swiper-button-prev {
    
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: var(--secondary);
}

/* Hero Scroll — NÃO bloquear o slider */
.scroll-down {
    position: absolute;
    left: 50px;
    bottom: 150px;
    display: flex;
    align-items: center;
    transform: rotate(-90deg);
    transform-origin: left center;
    color: var(--light);
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 2;           /* abaixo dos botões/paginação (10) */
    pointer-events: none; /* evita overlay nos cliques/gestos do Swiper */
}

.scroll-down span {
    
}

.arrow-down {
    width: 60px;
    height: 1px;
    background: var(--light);
    position: relative;
}

.arrow-down::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background: var(--light);
    transform: translateY(-50%) rotate(45deg);
    transform-origin: right center;
}

.arrow-down::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 1px;
    background: var(--light);
    transform: translateY(-50%) rotate(-45deg);
    transform-origin: right center;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    display: block;
    font-size: 22px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary);
}


.section-title2 {
    font-size: 30px;
    position: relative;
    display: inline-block;
}

.section-title2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary);
}

/* About Section */
.about-section {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--primary);
}

.about-details p {
    margin-bottom: 20px;
    color: var(--gray);
}

.signature {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

.signature img {
    width: 120px;
    
}

.signature-info {
    display: flex;
    flex-direction: column;
}

.signature-info span:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-info span:last-child {
    font-size: 14px;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.about-image .image-wrapper {
    position: relative;
    padding-bottom: 120%;
    overflow: hidden;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Numbers Section */
.numbers-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: var(--light);
}

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

.number-item {
    text-align: center;
    padding: 30px;
}

.number {
    font-size: 60px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    font-family: 'Cuprum', sans-serif;
}

.number-label {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

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

.service-card {
    padding: 40px;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.service-card p {
    margin-bottom: 30px;
    color: var(--gray);
}
.pmodal{position:fixed; inset:0; display:none; z-index:2000;}
.pmodal[aria-hidden="false"]{display:block;}
.pmodal__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.75); backdrop-filter: blur(4px);}
.pmodal__dialog{
  position:relative; z-index:1; margin:40px auto; max-width:1100px; width:calc(100% - 32px);
  background:#fff; border-radius:16px; overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,.25);
  display:flex; flex-direction:column;
}
.pmodal__close{
  position:absolute; right:12px; top:6px; font-size:32px; line-height:1; border:0; background:transparent; color:#222; cursor:pointer; z-index:2;
}
.pmodal__header{padding:20px 24px 10px; border-bottom:1px solid rgba(0,0,0,.06);}
.pmodal__title{font-family: 'Cuprum', sans-serif;; font-size:28px; margin:0;}
.pmodal__location{color:#777; margin-top:6px;}
.pmodal__body{display:grid; grid-template-columns: 2fr 1fr; gap:16px; padding:16px; min-height:520px;}
.pmodal__gallery{width:100%; height:520px; border-radius:12px; overflow:hidden; background:#f7f7f7;}
.pmodal__gallery .swiper-slide img{width:100%; height:100%; object-fit:cover;}
.pmodal__info{background:#fff; border:1px solid rgba(0,0,0,.06); border-radius:12px; padding:18px; display:flex; flex-direction:column;}
.pmodal__desc{color:#555; line-height:1.6;}
.pmodal .swiper-button-prev, .pmodal .swiper-button-next{color:#fff; text-shadow:0 2px 10px rgba(0,0,0,.4);}
.pmodal .swiper-pagination-bullet{background:rgba(255,255,255,.7); opacity:1;}
.pmodal .swiper-pagination-bullet-active{background:#ffffff;}
@media (max-width: 992px){
  .pmodal__body{grid-template-columns:1fr;}
  .pmodal__gallery{height:380px;}
}
@media (max-width: 576px){
  .pmodal__dialog{margin:16px auto;}
  .pmodal__gallery{height:300px;}
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

.service-link svg {
    
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.service-link:hover svg {
    transform: translateX(5px);
}

/* Projects Section (base) */
.projects-section {
    padding-bottom: 120px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 40px;
}

.project-card {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.project-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    transform: translateY(30px);
    transition: var(--transition);
}

.project-card:hover .project-info {
    transform: translateY(0);
}

.project-info h3 {
    font-size: 32px;
    color: var(--light);
    margin-bottom: 10px;
}

.project-info p {
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all svg {
    
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-view-all:hover svg {
    stroke: var(--light);
    transform: translateX(5px);
}

.btn-view-all2 {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-view-all2 svg {
    stroke: var(--secondary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.btn-view-all2:hover {
    background: var(--secondary);
    color: var(--light);

}

.btn-view-all2:hover svg {
    stroke: var(--light);
    transform: translateX(5px);
}

/* ====== Barra de Filtros Moderna ====== */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    margin: 40px 0 60px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
}

.filters-bar .search-box {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.filters-bar .search-box input {
    width: 100%;
    padding: 12px 18px 12px 45px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--light);
    font-family: 'Cuprum', sans-serif;
    transition: var(--transition);
}

.filters-bar .search-box input:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.25);
}

.filters-bar .search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 16px;
}

.filters-selects {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filters-selects select {
    appearance: none;
    background: var(--light) url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23777' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    background-size: 10px 6px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 12px 40px 12px 16px;
    font-family: 'Cuprum', sans-serif;
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.filters-selects select:focus {
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(200,169,126,0.25);
}

/* Botões tipo chip */
.filters-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-filter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: 0;
}

.btn-filter:hover::before {
    transform: scaleX(1);
}

.btn-filter:hover {
    color: var(--primary);
}

.btn-filter span {
    position: relative;
    z-index: 1;
}

/* Responsivo */
@media (max-width: 992px) {
    .filters-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filters-selects, .filters-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .filters-bar {
        padding: 14px 18px;
        gap: 10px;
    }
    .filters-selects select {
        flex: 1;
        font-size: 13px;
    }
}
/* ====== FIM filtros ====== */

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light);
}

.testimonials-slider {
    overflow: hidden;
}

.testimonial-card {
    background: var(--light);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    height: auto;
    margin-bottom: 60px;

    
}

.testimonial-card,
.testimonial-content {
    text-align: center;
}

.testimonial-content p {
    
    
}

.quote-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary);
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    
}

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

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray);
}

/* SCOPED paginação de Testemunhos */
.testimonials-section .swiper-pagination {
    position: static;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.testimonials-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: var(--gray);
    opacity: 0.3;
}

.testimonials-section .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}
/* FIX TESTEMUNHOS DESKTOP CENTRO DEFINITIVO */
@media (min-width: 992px) {
  .testimonials-section {
    display: block !important;
  }

  .testimonials-section > div {
    width: 100% !important;
  }

  .testimonials-section .right-column,
  .testimonials-section .image-column,
  .testimonials-section .empty-column {
    display: none ;
  }

  .testimonials-slider .swiper-slide {
    display: flex;
    justify-content: center;
  }

  .testimonial-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }
}
/* Contact Section */
.contact-section {
    padding: 120px 0;
    background-color: var(--primary);
    color: var(--light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .section-title {
    color: var(--light);
}

.contact-info .section-title2 {
    color: var(--light);
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    
}

.info-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--secondary);
}

.info-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.info-text p {
    opacity: 0.7;
    color: var(--light);
}

.contact-form {
    border: 2px solid var(--secondary);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 0 24px rgba(254, 212, 3, 0.15);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    font-family: 'Cuprum', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    background: var(--secondary);
    color: var(--primary);
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit svg {
    
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--light);
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 120px 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo .logo-text {
    font-size: 28px;
    color: var(--white);
}

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

.links-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light);
}

.links-column ul li {
    margin-bottom: 15px;
}

.links-column ul li a {
    opacity: 0.7;
    transition: var(--transition);
}

.links-column ul li a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light);
}

.footer-newsletter p {
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-newsletter input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 0;
    color: var(--light);
    font-family: 'Cuprum', sans-serif;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: transparent;
    border: none;
    color: var(--light);
    cursor: pointer;
    padding: 10px;
}

.footer-newsletter button svg {
    stroke: var(--light);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.award-seals {
    display: flex;
    align-items: center;
    margin-top: 32px;
}

.award-seals img {
    max-height: 200px;
    max-width: 200px;
    height: auto;
    width: auto;
    object-fit: contain;
}

.award-seals--footer {
    justify-content: flex-start;
    margin-top: 16px;
}

.award-seals--footer img {
    max-height: 100px;
    max-width: 100px;
    height: auto;
    width: auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    opacity: 0.7;
    font-size: 14px;
}

.footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    
    color: var(--light);
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .menu-item a {
        font-size: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-card {
        height: 500px;
    }

    .projects-grid.grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .filters-bar {
        grid-template-columns: 1fr;
    }
    .filters-actions {
        justify-content: flex-start;
    }
    .filters-group {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .projects-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .slide-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }

    .section-title2 {
        font-size: 22px;
    }
    
    .fullscreen-menu {
        width: 340px;
    }

    .menu-container {
        padding: 0 32px;
    }

    .menu-item a {
        font-size: 32px;
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer .social-links {
        margin-top: 20px;
    }

    .projects-grid.grid-4 {
        grid-template-columns: 1fr;
    }

    .slide-subtitle {
        font-size: 20px;
        max-width: 100%;
    }

    .btn-explore {
        font-size: 15px;
        padding: 12px 24px;
    }

    .btn-view-all2 {
        font-size: 13px;
        padding: 12px 24px;
    }

    .award-seals img {
        max-height: 70px;
        max-width: 90px;
    }

    .award-seals--footer img {
        max-height: 55px;
        max-width: 75px;
    }

    .property-gallery__thumbs {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 30px;
    }

    .section-title2 {
        font-size: 20px;
    }
    
    .fullscreen-menu {
        width: 100%;
    }

    .menu-container {
        padding: 0 24px;
    }

    .menu-item a {
        font-size: 28px;
    }

    .menu-footer {
        flex-direction: column;
    }
    
    .footer .social-links {
        margin-top: 30px;
    }
    
    .swiper-controls {
        display: none;
    }
    
    .hero .swiper-pagination {
        right: 20px;
        bottom: 20px;
    }
    
    .scroll-down {
        left: 20px;
        bottom: 20px;
    }

    .slide-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 18px;
    }

    .slide-inner {
        padding: 0 4px;
    }

    .btn-explore {
        font-size: 12px;
        padding: 10px 16px;
        letter-spacing: 1px;
    }

    .btn-view-all2 {
        font-size: 12px;
        padding: 10px 16px;
        letter-spacing: 1px;
    }

    .contact-form {
        padding: 20px 16px;
    }

    .award-seals img {
        max-height: 60px;
        max-width: 80px;
    }

    .award-seals--footer img {
        max-height: 50px;
        max-width: 65px;
    }

    .hero {
        min-height: 500px;
    }
}


/* === PROPERTY PAGE (SOTHEBYS-INSPIRED) === */
:root {
  --property-max: 1140px;
  --property-gap: 24px;
}

.property-page {
  padding-top: 110px;
  padding-bottom: 80px;
  background: #fafafa;
}

.property-wrap {
  max-width: var(--property-max);
  margin: 0 auto;
  padding: 0 20px;
}

#outros {
  max-width: var(--property-max);
  margin: 0 auto;
  padding: 0 20px;
  margin-top: 20px;
}

.property-breadcrumb {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 10px;
}

.property-breadcrumb a { color: inherit; text-decoration: none; }
.property-breadcrumb a:hover { text-decoration: underline; }

.property-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 18px;
}

.property-location {
  font-size: 18px;
  color: #3b3b3b;
  letter-spacing: .2px;
}

.property-title {
  font-size: 42px;
  line-height: 1.05;
  margin: 6px 0 0;
}

.property-subtitle {
  font-size: 18px;
  color: #6b6b6b;
  margin-top: 10px;
}

.property-price {
  font-size: 32px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.property-ref {
  font-size: 13px;
  color: #6b6b6b;
  text-align: right;
  margin-top: 6px;
}

.property-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 0 10px;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  margin-bottom: 18px;
}

.kpi {
  display: grid;
  gap: 4px;
  justify-items: start;
}
.kpi__value {
  font-weight: 700;
  font-size: 18px;
}
.kpi__label {
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #6b6b6b;
}

.property-tabs {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 14px 0 18px;
}

.property-tabs__link {
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #1c1c1c;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.property-tabs__link:hover {
  border-bottom-color: rgba(0,0,0,.2);
}

.property-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: var(--property-gap);
  align-items: start;
}

.property-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
}

.property-section {
  padding: 18px 18px;
}

.outros-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.property-section h2 {
  font-size: 18px;
  margin: 0 0 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.property-gallery__main {
  aspect-ratio: 16/9;
  background: #f0f0f0;
  display: grid;
  place-items: center;
}
.property-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  padding: 12px;
  background: #fff;
}
.property-gallery__thumbs button {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  outline: 2px solid transparent;
}
.property-gallery__thumbs button.is-active {
  outline-color: rgba(0,0,0,.35);
}
.property-gallery__thumbs img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}

.video-thumb {
  position: relative;
  height: 64px;
  overflow: hidden;
  background: #000;
}

.video-thumb video {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.video-thumb__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.property-text {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.readmore-btn {
  margin-top: 10px;
  background: transparent;
  border: 0;
  color: #1c1c1c;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}


/* Tabela em formato de linhas (usada em Projetos/Espaços) */
.property-table__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.property-table__row span{
  color:#6b6b6b;
  width:42%;
  flex:0 0 auto;
}
.property-table__row strong{
  font-weight:700;
  text-align:right;
  flex:1 1 auto;
}

.property-table {
  width: 100%;
  border-collapse: collapse;
}
.property-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,.07);
  vertical-align: top;
}
.property-table td:first-child {
  color: #6b6b6b;
  width: 42%;
}

.contact-box {
  position: static;
}
.contact-box .property-section {
  padding: 18px;
}
.contact-box label {
  font-size: 12px;
  color: #6b6b6b;
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .6px;
}
.contact-box input,
.contact-box textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.contact-box textarea {
  min-height: 110px;
  resize: vertical;
}
.contact-box button {
  width: 100%;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 900px) {
  .property-header { grid-template-columns: 1fr; }
  .property-price, .property-ref { text-align: left; }
  .property-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-grid { grid-template-columns: 1fr; }
  .property-gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 576px) {
  .property-page { padding-top: 90px; }
  .property-gallery__thumbs { grid-template-columns: repeat(3, 1fr); }
  .property-gallery__thumbs img { height: 52px; }
  .property-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .property-section { padding: 20px 16px; }
  #outros { padding: 0 12px; }
  .outros-links { flex-direction: column; align-items: flex-start; }
}


