/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
    border-radius: 50px;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: inherit;
}

.btn-primary {
    color: var(--bs-white);
}


/*** Navbar ***/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 40px 0;
    color: var(--bs-white);
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link,
    .navbar.bg-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid var(--bs-light);
    }
}

@media (min-width: 992px) {
    .navbar.bg-dark .navbar-nav .nav-link {
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 100px;
    background: rgba(0, 0, 0, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 550px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 200px;
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/capa.jpg) top center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-white);
}


/*** Title ***/
.title {
    margin-bottom: 2rem;
}

.title .title-left,
.title .title-center,
.title .title-right {
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.title .title-center {
    text-align: center;
}

.title .title-right {
    text-align: right;
}

.title .title-left h5,
.title .title-center h5,
.title .title-right h5 {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
}

.title .title-left h5::after,
.title .title-center h5::before,
.title .title-center h5::after,
.title .title-right h5::before {
    position: absolute;
    content: "";
    width: 500%;
    height: 0;
    top: 9px;
    border-bottom: 1px solid var(--bs-white);
}

.title .title-left h5::after,
.title .title-center h5::after {
    left: calc(100% + 15px);
}

.title .title-right h5::before,
.title .title-center h5::before {
    right: calc(100% + 15px);
}

.title .title-left h1,
.title .title-center h1,
.title .title-right h1 {
    border-bottom: 1px solid var(--bs-white);
}


/*** Service ***/
.service-item {
    position: relative;
    margin-top: 2.5rem;
    overflow: hidden;
}

.service-item .service-img {
    position: relative;
    display: inline-block;
}

.service-item .service-img::before {
    position: absolute;
    content: "";
    width: calc(100% - 12rem);
    height: calc(100% - 12rem);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3rem solid rgba(0, 0, 0, .5);
    border-radius: 300px;
    z-index: 1;
}

.service-item.service-item-left {
    border-radius: 500px 0 0 500px;
    background: linear-gradient(to right, var(--bs-secondary), var(--bs-dark));
}

.service-item.service-item-right {
    border-radius: 0 500px 500px 0;
    background: linear-gradient(to left, var(--bs-secondary), var(--bs-dark));
}

@media (max-width: 767.98px) {
    .service-item.service-item-left,
    .service-item.service-item-right {
        border-radius: 500px 500px 0 0;
        background: linear-gradient(to bottom, var(--bs-secondary), var(--bs-dark));
        text-align: center;
    }
}


/*** Team ***/
.team-item {
    position: relative;
}

.team-item .team-name {
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .7);
}

.team-item .team-body {
    position: relative;
    overflow: hidden;
}

.team-item .team-body .team-before,
.team-item .team-body .team-after {
    position: absolute;
    content: "";
    width: 0;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .5s;
}

.team-item .team-body .team-after {
    left: auto;
    right: 0;
}

.team-item .team-body .team-before {
    text-align: right;
}

.team-item:hover .team-body .team-before,
.team-item:hover .team-body .team-after {
    width: 50%;
}

.team-item .team-body .team-before span,
.team-item .team-body .team-after span {
    margin: 5px;
    color: var(--bs-white);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-body .team-before span,
.team-item:hover .team-body .team-after span {
    opacity: 1;
    transition-delay: .2s;
}


/*** Testimonial ***/
.testimonial-carousel {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 60px;
    height: 60px;
    margin: 0 5px;
    padding: 10px;
    background: var(--bs-dark);
    border-radius: 100px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .1;
    transition: .5s;
    border-radius: 100px;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
@keyframes footerAnimatedBg {
	0% {
        background-position: 0 0;
    }

	100% {
        background-position: -1000px 0;
    }
}

.footer {
	background-image: url(../img/footer-bg.png);
	background-position: 0px 0px;
    background-repeat: repeat-x;
	animation: footerAnimatedBg 50s linear infinite;
}

/* =================Porque nos escolher ========================= */

.why-choose-us {
  /* background: #0d0d0d; */
  padding: 80px 20px;
  color: #ffffff;
}

.why-choose-us .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2.5rem;
  color: #d4af37; /* dourado */
  margin-bottom: 10px;
  animation: fadeDown 1s ease;
}

.why-choose-us .subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #cccccc;
  animation: fadeUp 1.2s ease;
}

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.reason {
  background: #141414;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid #222;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeUp 1.5s ease;
}

.reason:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.reason span {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 15px;
}

.reason h3 {
  color: #d4af37;
  margin-bottom: 10px;
}

.reason p {
  color: #bbbbbb;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ANIMAÇÕES */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} 



/* ==================   =========================== */


.stats-section {
  background: linear-gradient(135deg, #0b0b0b, #111);
  padding: 70px 20px;
}

.stats-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat {
  background: #141414;
  padding: 35px 20px;
  border-radius: 14px;
  border: 1px solid #222;
  animation: scaleIn 1.2s ease;
}

.stat h3 {
  font-size: 2.8rem;
  color: #d4af37; /* dourado */
  margin-bottom: 10px;
  animation: countGlow 2s infinite alternate;
}

.stat p {
  color: #cccccc;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

/* ANIMAÇÕES */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes countGlow {
  from {
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.2);
  }
  to {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}





/* ==============================
   PARCEIROS & CLIENTES
================================ */

.partners-section {
    overflow: hidden;
    background-color: #111;
    padding: 50px 0;
}

.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.partnerss-track {
    display: flex;
    gap: 40px; /* espaço entre os logos */
    /* animation: scrollPartners 3s linear infinite; */
}

.partners-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollPartners 38s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused; /* pausa no hover */
}

.partner-logo {
    flex: 0 0 auto; /* impede que os logos encolham ou cresçam */
    width: 150px;   /* tamanho do quadrado */
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; /* opcional, para ver o quadrado */
    border-radius: 8px;
    overflow: hidden;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* mantém proporção */
     /* filter: grayscale(100%); */
    /* opacity: 0.6;  */
    transition: all 0.4s ease;
}

.partner-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ==============================
   Animação do loop infinito
================================ */
 @keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* move metade da pista duplicada */
    }
} 

/* ==============================
   Responsivo
================================ */
@media (max-width: 1024px) {
    .partner-logo {
        width: 130px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .partner-logo {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .partner-logo {
        width: 100px;
        height: 75px;
    }
}



/* ==============================
   VISÃO | MISSÃO | VALORES
================================ */

.vmv-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px;
    border-radius: 10px;
    color: #ccc;
    transition: all 0.4s ease;
}

.vmv-card h4 {
    color: #fff;
    margin-bottom: 15px;
}

.vmv-card p {
    font-size: 15px;
    line-height: 1.7;
}

.vmv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgb(255, 205.4, 56.6); /* azul primário */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.vmv-icon i {
    font-size: 38px;
    color: var(--bs-dark);
}

/* Hover */
.vmv-card:hover {
    transform: translateY(-8px);
    border-color: rgb(255, 205.4, 56.6) ;
}

.vmv-card:hover .vmv-icon {
    background: var(--bs-primary);
}

.vmv-card:hover .vmv-icon i {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .vmv-card {
        padding: 30px 20px;
    }
}





/* =======================================================
   /* FIELNE – Ajustes Visuais quem somos e serviços 
================================ ======================*/ 


 .fielne-list li {
    margin-bottom: 10px;
    font-size: 16px;
}

.uniform-card {
    background: #111;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3); 
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.uniform-card:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
}

.uniform-icon {
    font-size: 45px;
    color: #d4af37;
    margin-bottom: 20px;
}

.uniform-card h4 {
    text-transform: uppercase;
    margin-bottom: 15px;
}

.uniform-card p {
    font-size: 15px;
    color: #ccc;
} 







/* ==============================
   
================================ */

.disabled-link {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

 /*--------------------------------------------------------------
#   Decoração de Interior 
--------------------------------------------------------------*/
/* ===== DESIGN INTERIORES ===== */

/* TÍTULOS */
.di-heading {
  font-weight: 700;
  margin-bottom: 29px;
}

.di-subtitle {
  color: #6c757d;
}

/* SOBRE */
.di-about img {
  border-radius: 10px;
}

/* CARDS SERVIÇOS */
.di-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  height: 100%;
  /* background: #fff; */
}

.di-card:hover {
  transform: translateY(-8px);
}

.di-card-img {
  height: 220px;
  overflow: hidden;
}

.di-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.di-card-content {
  padding: 25px;
}

.di-card-content h5 {
   font-size: 21px;
}

.di-card-content p {
   font-size: 18px;
  line-height: 1.7;
}

/* PROCESSO */
.di-process-item {
  opacity: 0;
  transform: translateY(40px);
  animation: diFadeUp 0.8s ease forwards;
}

.di-process-item h6 {
  font-size: 19px;
}

.di-process-item:nth-child(1) { animation-delay: 0.2s; }
.di-process-item:nth-child(2) { animation-delay: 0.4s; }
.di-process-item:nth-child(3) { animation-delay: 0.6s; }
.di-process-item:nth-child(4) { animation-delay: 0.8s; }

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

.di-step {
  width: 65px;
  height: 65px;
  background: #d4af37;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  transition: 0.3s;
}

.di-process-item:hover .di-step {
  transform: scale(1.1);
}

/* CTA */
.di-cta {
  color: #fff;
}

.di-cta .btn {
  background:#d4af37;
  color: black;
  font-weight: 600;
}

.di-cta .btn:hover {
  background: black;
  color: #d4af37;
}

 /*--------------------------------------------------------------
# Uniformes personalizados 
--------------------------------------------------------------*/
/* ===== UNIFORMES ===== */

/* TÍTULOS */
.uni-heading {
  font-weight: 700;
  margin-bottom: 20px;
}

.uni-subtitle {
  color: #d4af37;
  letter-spacing: 2px;
}

/* SOBRE */
.uni-about img {
  border-radius: 10px;
}

/* CARDS */
.uni-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  height: 100%;
  /* background: #fff; */
}

.uni-card:hover {
  transform: translateY(-8px);
}

.uni-card-img {
  height: 220px;
  overflow: hidden;
}

.uni-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

.uni-card-content {
  padding: 29px;
}

.uni-card-content h5 {
   font-size: 21px;
}

.uni-card-content p {
   font-size: 18px;
   line-height: 1.7;
}





/*--------------------------------------------------------------
# Termos de Utilização – FIELNE (CSS only)
--------------------------------------------------------------*/

.bg-black {
    background-color: #0b0b0b;
}

.terms-box {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 45px;
    border-radius: 10px;
    color: #ccc;

      max-width: 998px;   /* ajusta aqui */
    margin: 0 auto;     /* centraliza */
}

/* INTRO */
.terms-intro {
    font-size: 16px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* CADA TERMO */
.terms-section {
    position: relative;
    margin-bottom: 35px;
    padding: 25px 25px 25px 40px;
    border-radius: 8px;
    background: transparent;
    transition: all 0.45s ease;
    animation: termFadeUp 0.8s ease both;
}

/* atraso automático em cascata */
.terms-section:nth-child(2) { animation-delay: 0.1s; }
.terms-section:nth-child(3) { animation-delay: 0.2s; }
.terms-section:nth-child(4) { animation-delay: 0.3s; }
.terms-section:nth-child(5) { animation-delay: 0.4s; }
.terms-section:nth-child(6) { animation-delay: 0.5s; }

/* Hover / foco */
.terms-section:hover,
.terms-section:focus-within {
    background: rgba(212, 175, 55, 0.06);
    transform: translateX(8px);
}

/* Linha dourada animada */
.terms-section::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 20px;
    width: 4px;
    height: 0;
    background: #d4af37;
    border-radius: 3px;
    transition: height 0.45s ease;
}

.terms-section:hover::before,
.terms-section:focus-within::before {
    height: calc(100% - 40px);
}

/* TÍTULOS */
.terms-section h4 {
    color: #d4af37;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* TEXTO */
.terms-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #cccccc;
}

/* ANIMAÇÃO DE ENTRADA */
@keyframes termFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .terms-box {
        padding: 30px 22px;
    }

    .terms-section {
        padding: 22px 20px 22px 34px;
        transform: none !important;
    }
}




/*--------------------------------------------------------------
# link whatsapp
--------------------------------------------------------------*/

.whatsapp-link {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  left: 45px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 39px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1000;
}

/* .fa-whatsapp {
  margin-top: 16px;
} */

.whatsapp-float {
  position: fixed;
  width: 62px;
  height: 62px;
  bottom: 30px;
  /* right: 20px; */
  left: 30px;
  z-index: 99990;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}





/* === PORTFOLIO NOVO === */

/* === PORTFOLIO === */
/* .portfolio-novo {
  background: #0b0b0b;
}

.portfolio-thumb {
  position: relative;
  height: 350px;        
  background: #111;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

Imagem ajustada, NÃO corta
.portfolio-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;


}

.portfolio-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
  padding: 15px;
}

.portfolio-thumb:hover .portfolio-hover {
  opacity: 1;
}

.portfolio-hover i {
  font-size: 36px;
  color: var(--bs-primary);
  margin-bottom: 10px;
}

.portfolio-hover p {
  font-size: 14px;
  margin: 0;
}

 Filtros 
.portfolio-filter .filter-btn {
  background: transparent;
  border: 1px solid var(--bs-primary);
  color: #fff;
  padding: 8px 18px;
  margin: 5px;
  cursor: pointer;
}

.portfolio-filter .filter-btn.active,
.portfolio-filter .filter-btn:hover {
  background: var(--bs-primary);
}


.portfolio-overlay-full {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.portfolio-overlay-full img {
  max-width: 90%;
  max-height: 90%;
}

.portfolio-close {
  position: absolute;
  top: 25px;
  right: 40px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
} */

/* ------------Na Galeria e team   ----------------------------- */

/* GRID moderna
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
} */

/* Card com proporção controlada 
.portfolio-card {
  position: relative;
  aspect-ratio: 4 / 3; 
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}*/

/* Imagem cobre tudo
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
} */

/* Zoom elegante 
.portfolio-card:hover img {
  transform: scale(1.12);
}*/

/* Legenda 
.portfolio-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
  font-size: 14px;
  text-align: center;
}*/

/* Modal 
.portfolio-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  text-align: center;
  z-index: 9999;
  padding-top: 60px;
}

.portfolio-modal img {
  max-width: 85%;
  max-height: 75vh;
  object-fit: contain;
}

.modal-caption {
  color: white;
  margin-top: 15px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: white;
  cursor: pointer;
  padding: 15px;
}

.prev { left: 30px; }
.next { right: 30px; }

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}*/




/* ===== GALERIA ===== */

/* 
 .portfolio-filter button {
  border: 0;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 50px;
  background: #f1f1f1;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background: #d4af37;
  color: #fff;
}


.portfolio-card {
  position: relative;
  width: 90%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  /* background: #fff;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  transition: transform 0.4s ease;
  /* background: #fff; 
}


.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  text-align: center;
}

.overlay-content i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
}

.overlay-content h6 {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

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


.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  text-align: center;
  padding-top: 60px;
}

.portfolio-modal img {
  max-width: 85%;
  max-height: 75vh;
  object-fit: contain;
}

.modal-caption {
  color: #fff;
  margin-top: 15px;
  font-size: 19px;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #d4af37;
  padding: 16px;
  transform: translateY(-50%);
}

.prev { left: 20px; }
.next { right: 20px; }

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #d4af37;;
  cursor: pointer;
}  */


/* FILTRO */
.portfolio-filter button {
  border: 0;
  padding: 8px 18px;
  margin: 5px;
  border-radius: 50px;
  background: #f1f1f1;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-filter button.active,
.portfolio-filter button:hover {
  background:  #d4af37;;
  color: #fff;
}

/* CARD */
.portfolio-card {
  position: relative;
  width: 90%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* OVERLAY */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  text-align: center;

  
}

.overlay-content i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
}

.overlay-content h6 {
  color: #fff;
  margin: 0;
  font-size: 18px;
}

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

/* MODAL */
.portfolio-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0,0,0,0.92);
  text-align: center;
  padding-top: 60px;
}

.modal-content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  /* flex-direction: column; */
}

.modal-image {
  text-align: center;
}

.modal-image h5 {
  color: #fff;
  margin-bottom: 10px;
}

.modal-image img {
  max-width: 400px;
  max-height: 70vh;
  object-fit: contain;
}

.modal-caption {
  color: #fff;
  margin-top: 20px;
  font-size: 18px;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: #d4af37;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal-content-wrapper {
    flex-direction: column;
  }
}

/* BOTÕES FRENTE/COSTAS */
.image-switch {
  margin-bottom: 15px;
}

.image-switch button {
  padding: 6px 15px;
  border: 0;
  border-radius: 20px;
  margin: 0 5px;
  background: #eee;
  cursor: pointer;
  transition: 0.3s;
}

.image-switch button.active {
  background: #d4af37;
  color: #fff;
}

/* ZOOM */
.zoomable {
  max-width: 500px;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoomable.zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

/* SETAS */
.modal-arrow {
  background: none;
  border: none;
  font-size: 40px;
  color: white;
  cursor: pointer;
}