/*

Tooplate 2130 Waso Strategy

https://www.tooplate.com/view/2130-waso-strategy

Free Bootstrap 5 HTML Template

*/

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(0 37 70) !important;
}

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #cf9400;
  --secondary-color:              #002546;
  --section-bg-color:             #f5f5f5;
  --dark-color:                   #000000;
  --p-color:                      #717275;

  --body-font-family:             'DM Sans', sans-serif;

  --h1-font-size:                 60px;
  --h2-font-size:                 42px;
  --h3-font-size:                 36px;
  --h4-font-size:                 32px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               14px;
  --copyright-text-font-size:     16px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-bold:             700;
}

body {
    background: #252525;
    font-family: var(--body-font-family); 
}

/* Dropdown abre com hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}




/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
  letter-spacing: -1px;
}

p {
    color: #c4c7d0;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}
h2, h3, h4, h5, h6 {
    color: #ffffff;
}
h1 {
  font-size: var(--h1-font-size);
  letter-spacing: -2px;
}

h2 {
  font-size: var(--h2-font-size);
  letter-spacing: -2px;
}

h3 {
  font-size: var(--h3-font-size);
  line-height: inherit;
}

h4 {
  font-size: var(--h4-font-size);
  line-height: inherit;
}

h5 {
  font-size: var(--h5-font-size);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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

a:hover {
  color: var(--primary-color);
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

::-moz-selection {
  background: var(--primary-color);
  color: var(--white-color);
}

.section-hero ::selection,
.bg-warning ::selection {
  background: #FFFFFF;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.custom-border-radius {
  border-radius: 20px;
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.small-title {
  text-transform: uppercase;
}


/*---------------------------------------
  CUSTOM ICON               
-----------------------------------------*/
.custom-icon {
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border: 3px solid var(--white-color);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  position: relative;
}

.custom-icon::before,
.custom-icon::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 50%;
}

.custom-icon::before {
  border: 3px solid transparent;
}

.custom-icon::after {
  border: 0 solid transparent;
}

.custom-icon:hover {
  border-color: transparent;
}

.custom-icon:hover::before {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  transition: border-top-color .15s linear,border-right-color .15s linear .1s,border-bottom-color .15s linear .2s;
}

.custom-icon:hover::after {
  border-top: 3px solid var(--primary-color);
  border-left-width: 3px;
  border-right-width: 3px;
  transform: rotate(270deg);
  transition: transform .4s linear 0s,border-left-width 0s linear .35s;
}

.play-icon::before {
  position: relative;
  left: 1px;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--secondary-color);
  border-radius: 100px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  font-weight: var(--font-weight-bold);
  padding: 12px 24px;
}

.custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-bg-primary {
  background: var(--primary-color);
}

.custom-bg-primary:hover {
  background: var(--white-color);
  color: var(--dark-color);
}


p {
    color: #cdcdcd;
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
}

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

NAVBAR

*/

/* Navbar minimalista arredondada e translúcida */
.navbar {
  height: 90px;
  background: rgb(28 28 28 / 29%); /* translúcido */
  backdrop-filter: blur(5px); /* efeito vidro */
  padding: 0 1.5rem;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  border-radius: 20px;
  margin: 15px auto;
  width: calc(100% - 30px); /* afastada das bordas */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gold-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8860b); /* dourado com leve degradê */
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px; /* cantos arredondados */
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: default; /* se for só decorativo */
}

.gold-btn:hover {
  background: linear-gradient(135deg, #ffd700, #daa520); /* dourado mais claro no hover */
}


/* Container flex */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Licença discreta */
.license-box {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}

.license-seal {
  height: 28px;
  opacity: 0.8;
}

/* Logo central */
.navbar-brand {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 90px;
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 93px;
  transition: transform 0.3s ease;
}
.navbar-brand img:hover {
  transform: scale(1.07);
}

/* Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f7b900;
}

/* Dropdown */
.dropdown-menu {
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.4rem 0;
  min-width: 200px;
}

.dropdown-item {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  padding: 0.5rem 1.2rem;
  transition: background 0.3s ease, color 0.3s ease;
}
.dropdown-item:hover {
  background: rgba(255,255,255,0.05);
  color: #f7b900;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 991.98px) {
  .license-box, .license-seal {
    display: none;
  }
  .navbar {
    border-radius: 0; /* sem bordas no mobile para ocupar 100% */
    width: 100%;
    margin: 0;
  }
  .navbar-brand {
    position: static;
    transform: none;
    margin: auto;
  }
  .navbar-brand img {
    max-height: 70px;
  }
  .navbar-collapse {
    background: rgba(28,28,28,0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-radius: 0 0 14px 14px;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: #212529;
  display: flex;
  align-items: center;
  justify-content: center; /* centraliza no meio */
  padding: 10px 15px;
  flex-wrap: wrap;
  gap: 20px;
  color: white;
  font-family: Arial, sans-serif;
}

/* Telefone */
.contact-icons a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 8px;
  font-size: 16px;
  white-space: nowrap;
}
.contact-icons a:hover {
  opacity: 0.8;
}
.phone-icon {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
}

/* Grupo de ícones */
.language-jobber-group {
  display: flex;
  align-items: center;
  gap: 15px;
  white-space: nowrap;
}

/* Ícone tradutor */
.translate-icon {
  font-size: 20px;
  color: white;
  text-decoration: none;
}
.translate-icon:hover {
  opacity: 0.8;
}

/* Botão Jobber */
.jobber-icon-button {
  background-color: white;
  padding: 8px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.jobber-icon-button:hover {
  background-color: #f5f5f5;
  transform: scale(1.05);
}
.jobber-icon-large {
  width: 80px; /* aumenta o tamanho */
  height: auto;
  display: block;
}

/* Esconder o texto "Select Language" */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-simple > span {
  display: none !important;
}

/* Opcional: ajustar o tamanho do dropdown */
.goog-te-gadget-simple {
  padding: 0 !important;
  border: none !important;
}


/* Responsivo */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
  }
}




/*---------------------------------------
  HERO              
-----------------------------------------*/
.hero {
  position: relative;
  height: calc(100vh - 133px);
}

.section-hero {
  background-image: url('../images/jason-goodman-MUZFKa_mttU-unsplash.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: auto;
  padding-top: 180px;
  padding-bottom: 180px;
}

.section-hero::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.section-hero-text {
  position: relative;
}

.carousel {
  padding-right: 0;
  padding-left: 0;
}

.hero-carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-image-wrap::before {
  content: "";
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.carousel-caption {
  z-index: 9;
  top: 32%;
  bottom: 0;
  left: 0;
  text-align: left;
  width: 50%;
  margin-right: 12px;
  margin-left: 12px;
}

.carousel-image-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin-left: auto;
  overflow: hidden; /* Garante que a imagem não saia da área */
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease; /* Transição bem suave e longa */
}

/* Quando o slide estiver ativo, aplica o zoom */
.carousel-item.active .carousel-image {
  transform: scale(1.08); /* Leve zoom para efeito de profundidade */
}

.carousel-control-next, 
.carousel-control-prev {
  top: auto;
  bottom: 50px;
  opacity: 1;
}

.carousel-control-prev {
  left: auto;
  right: 70px;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  width: 70px;
  height: 70px;
}


/* ===== SECTION ABOUT BASE ===== */
.about-section {
  padding: 80px 0;
}

.grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.about-text-block {
  flex: 1 1 500px;
}

.label {
  font-size: 14px;
  text-transform: uppercase;
  color: #e59c00;
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
}

.heading {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.highlight {
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}

/* ===== STATS ===== */
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.stat-box {
  text-align: center;
  flex: 1;
}

.stat-box h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

.stat-box p {
  color: #ccc;
  font-size: 14px;
}

/* ===== BUTTON ===== */
.btn-primary {
  background-color: #cf9400;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #c98400;
}

/* ===== IMAGE BLOCK ===== */
.about-image-block {
  flex: 1 1 450px;
  max-width: 500px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.about-image-text {
  margin-top: 20px;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.about-image-modern {
  width: 100%;
  transition: transform 0.4s ease;
}

.image-wrapper:hover .about-image-modern {
  transform: scale(1.1);
}

/* ===== OVERLAY TEXTS ===== */
.overlay-text {
  position: absolute;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
}

.overlay-text.top {
  top: 0;
}

.overlay-text.bottom {
  bottom: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .grid-about {
    flex-direction: column;
  }
}


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

    MODAL
============ */    

/* Fundo do modal */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

/* Conteúdo do modal */
.custom-modal-content {
  background: #2b2b2b;
  color: white;
  padding: 35px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
}

/* Animação aparecer */
.custom-modal-content.show {
  transform: scale(1);
  opacity: 1;
}

/* Fechar botão */
.close-modal {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  color: #f5b921;
  cursor: pointer;
  transition: transform 0.2s;
}

.close-modal:hover {
  transform: rotate(90deg);
}

/* Ícone */
.modal-icon {
  font-size: 50px;
  text-align: center;
  margin-bottom: 15px;
  animation: bounce 1.5s infinite;
}

/* Animação do ícone */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Formulário */
.contact-form {
  font-family: 'Poppins', sans-serif;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
  background: #1c1c1c;
  color: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px rgba(245,185,33,0.6);
}

.contact-form button {
  margin-top: 15px;
  background: #f5b921;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #d8a619;
}


/* =========
    S E R V I C E S
============== */    

  .my-services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    background-color: #212529;
  }

  .my-services-header {
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
  }

  .my-services-header small {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
  }

  .my-services-header h2 {
    font-weight: 700;
    font-size: 2rem;
    color: #fff;
    margin: 0;
  }

  .my-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }

  .my-service-card {
    background-color: #2a2e32;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    cursor: pointer;

    flex: 0 0 calc(33.3333% - 1rem);
    max-width: calc(33.3333% - 1rem);
    height: 320px;
    display: block;
  }

  .my-service-card:hover {
    transform: translateY(-5px);
  }

  .my-service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;

    display: flex;
    align-items: flex-end;
    padding: 0;
    box-sizing: border-box;
  }

  .my-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    pointer-events: none;
  }

  .my-service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background-color 0.3s ease;
    border-radius: 12px;
    z-index: 1;
  }

  .my-service-image:hover::before {
    background: rgba(0, 0, 0, 0.3);
  }

  .my-service-title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 2;
    color: #fff;
    font-weight: 600;
    font-size: 1.25rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.7);
    user-select: none;
  }

  .btn-more-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255 255 255 / 0.85);
    color: #212529;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    z-index: 3;
    user-select: none;
    cursor: pointer;
    box-shadow: none;
  }

  .btn-more-info:hover {
    background-color: rgba(255 255 255 / 1);
  }

  .my-service-image:hover .btn-more-info {
    opacity: 1;
    pointer-events: auto;
  }

  /* RESPONSIVO */

  @media (max-width: 992px) {
    .my-service-card {
      flex: 0 0 calc(50% - 1rem);
      max-width: calc(50% - 1rem);
      height: 280px;
    }
  }

  @media (max-width: 576px) {
    .my-service-card {
      flex: 0 0 100%;
      max-width: 100%;
      height: 240px;
    }
  }






/* before */

.before-after-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  cursor: ew-resize;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  user-select: none;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-after-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
  border-radius: 12px;
  transition: clip-path 0.3s ease;
  will-change: clip-path;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  background: transparent;
  cursor: ew-resize;
  z-index: 10;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  cursor: ew-resize;
}
.slider::-moz-range-thumb {
  width: 0;
  height: 0;
  cursor: ew-resize;
}

.slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  background: var(--secondary-color, #ff5722);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 20;
}

.before-after-container:hover .slider-handle {
  background: var(--primary-color, #2196f3);
}

.label {
  position: absolute;
  top: 20px;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 0 10px rgba(0,0,0,0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  letter-spacing: 0.2em;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  z-index: 30;
}

.before-label {
  left: 25%;
}

.after-label {
  left: 75%;
}

.label.active {
  opacity: 1;
}

.project-info {
  color: #222;
}

.projects-small-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #f39c12;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.projects-title {
  font-weight: 700;
  margin-top: 5px;
}

/* Estilo para as miniaturas */
.projects .row > .col-3 img {
  width: 100%;
  height: 120px;         /* Altura fixa para uniformizar a grade */
  object-fit: cover;     /* Corta e preenche a imagem mantendo o foco */
  border-radius: 8px;    /* Cantos levemente arredondados */
  box-shadow: 0 3px 8px rgba(0,0,0,0.1); /* Sombra leve */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;       /* Aponta que é clicável, caso queira interatividade */
}

/* Efeito hover nas miniaturas */
.projects .row > .col-3 img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  z-index: 10;           /* Trazer para frente se sobrepor levemente */
}



/*---------------------------------------
  MISSION, VISION, VALUE - LIGHT UI
-----------------------------------------*/

/* Container centralizado com max-width */
.mvv-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Section padding */
.mvv-section {
  padding: 20px 0;
  background-color: #252525; /* Mantive fundo escuro da seção */
}

/* Título principal - centralizado */
.mvv-title-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.mvv-subtitle {
  color: #bbbbbb;
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: normal;
}

.mvv-main-title {
  font-weight: 800;
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0;
}

/* Grid dos cards */
.mvv-feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .mvv-feature-boxes {
    grid-template-columns: 1fr;
  }
}

/* Cards com fundo branco e texto preto */
.mvv-feature-card {
  display: flex;
  align-items: flex-start;
  background: #ffffff;
  color: #000000;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.mvv-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Ícones redondos com gradientes mais escuros para contraste */
.mvv-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cores dos ícones por tipo (gradientes ajustados para fundo branco) */
.mvv-box-primary .mvv-feature-icon {
  background: linear-gradient(135deg, #b8860b, #8b6914);
}

.mvv-box-success .mvv-feature-icon {
  background: linear-gradient(135deg, #004080, #002f5e);
}

.mvv-box-warning .mvv-feature-icon {
  background: linear-gradient(135deg, #a32b2b, #6b1010);
}

.mvv-box-info .mvv-feature-icon {
  background: linear-gradient(135deg, #495057, #343a40);
}

/* Conteúdo dos cards: títulos e parágrafos */
.mvv-feature-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 8px 0;
}

.mvv-feature-content p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  color: #000000;
}


/*---------------------------------------
  COMO TRABALHAMOS
-----------------------------------------*/

.process-section {
  margin-top: 40px;
  text-align: center;
}

.process-subtitle-label {
  color: #eb9b1a;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.process-subtitle {
  color: #cccccc;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

@media(min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  background-color: #2a2a2a;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  color: #ffffff;
}

.process-step:hover {
  transform: translateY(-5px);
}

.process-icon {
  width: 48px;
  height: 48px;
  background-color: #eb9b1a;
  color: #2e2e2e;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 10px;
}

.process-step h5 {
  margin-top: 10px;
  font-size: 18px;
  color: #ffffff;
}

.process-step p {
  font-size: 14px;
  color: #dddddd;
  line-height: 1.6;
}




/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
/*---------------------------------------
  PROJECTS              
-----------------------------------------*/
.projects {
  background-color: #1e1e1e;
  padding: 80px 40px;
  font-family: 'Segoe UI', sans-serif;

  border-radius: 30px;
  margin: 50px auto 80px auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);

  max-width: 1600px;  /* mantive max-width */
  width: 95%;         /* ocupa 95% da viewport */
  box-sizing: border-box;
}

.gallery-image {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

/* Título central */
.projects h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.projects small {
  display: block;
  text-align: center;
  color: #ffffffcc;
  margin-bottom: 8px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Filtros */
.filter-controls {
  text-align: center;
  margin-bottom: 40px;
}

.filter-controls button {
  background-color: transparent;
  border: 2px solid #cf9400;
  color: #cf9400;
  padding: 10px 20px;
  margin: 0 10px 10px 0;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
}

.filter-controls button:hover,
.filter-controls button.active {
  background-color: #cf9400;
  color: #1e1e1e;
}

/* Galeria de imagens */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* garante múltiplos quadrados na linha */
  gap: 24px;
  justify-content: center;
  margin-bottom: 60px;
}

/* Container dos itens da galeria */
.project-gallery .project-item {
  position: relative;
  overflow: hidden;
  display: none; /* esconde por padrão */

  aspect-ratio: 1 / 1; /* força o quadrado */
  width: 100%;
  max-width: 280px; /* controla tamanho máximo */

  /* se quiser altura fixa, pode usar height, mas aspect-ratio é mais flexível */
}

/* Ativa o item visível */
.project-gallery .project-item.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

/* Imagens com 100% da largura e altura do container */
.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.project-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

/* Label da categoria */
.project-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background-color: #cf9400;
  color: #1e1e1e;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Animação suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 576px) {
  .project-gallery {
    grid-template-columns: 1fr; /* 1 coluna full width */
    gap: 16px;
  }

  .project-gallery .project-item {
    max-width: 100%;
    height: 320px;          /* Aumentei a altura pra preencher mais */
    border-radius: 12px;    /* Arredondado em todos os cantos */
    overflow: hidden;       /* Pra garantir que a imagem respeite o border-radius */
    display: block;         /* garantir que esteja visível */
  }

  .project-gallery img {
    border-radius: 12px;    /* Arredondar a imagem também em todos os cantos */
    height: 100%;           /* altura total do container */
    width: 100%;            /* largura total do container */
    object-fit: cover;
  }
}


/* SECTION LAYOUT CONTACT */
.contact-section {
  background-color: #2e2e2e;
  padding: 80px 20px;
  color: #ffffff;
  font-family: 'Arial', sans-serif;
}

/* Wrapper geral */
.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* FORM + INFO TOGETHER */
.contact-card {
  background: #1c1c1c;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
}

.form-subtitle {
  font-weight: 600;
  color: #eb9b1a;
  text-transform: uppercase;
  font-size: 14px;
}

.form-title {
  font-size: 28px;
  margin: 10px 0 30px;
}

.form-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #f1f1f1;
  padding: 12px 0;
  color: #ffffff;
  font-size: 16px;
  outline: none;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom: 2px solid #eb9b1a;
}

.contact-form button {
  background-color: #eb9b1a;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.contact-form button:hover {
  background-color: #ffffff;
  color: #2e2e2e;
}

/* INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info a {
  color: #f1f1f1;
  text-decoration: none;
}

.contact-icon {
  color: #eb9b1a;
  font-size: 18px;
}

.license-badge {
  margin-top: 10px;
  background-color: #eb9b1a;
  color: #2e2e2e;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  color: #eb9b1a;
  font-weight: 600;
  text-decoration: none;
}

.google-map {
  margin-top: 30px;
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 15px;
}

/* HOW IT WORKS */
.process-section {
  text-align: center;
}

.process-subtitle-label {
  color: #eb9b1a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

.process-title {
  font-size: 28px;
  margin-top: 10px;
}

.process-subtitle {
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.6;
}

.process-steps {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.process-step {
  background: #1c1c1c;
  padding: 25px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  text-align: center;
}

.process-icon {
  background-color: #eb9b1a;
  color: #2e2e2e;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.process-step h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  line-height: 1.5;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }
}



/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
/* -----------------------------
   FOOTER - TALENT CONSTRUCTION
----------------------------- */

.site-footer {
  background-color: #111;
  color: #fff;
  padding: 60px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer h5 {
  font-weight: 600;
  margin-bottom: 20px;
  color: #f9c10b; /* Amarelo Talent */
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #bbb;
  font-size: 15px;
  transition: 0.3s ease;
}

.site-footer a:hover {
  color: #f9c10b;
  text-decoration: none;
}

.site-footer ul {
  padding-left: 0;
  list-style: none;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer .bi {
  vertical-align: middle;
  margin-right: 6px;
  font-size: 18px;
}

.site-footer img {
  max-width: 180px;
  margin-bottom: 20px;
}

.site-footer hr {
  border-color: #333;
}

.site-footer .text-muted {
  color: #888 !important;
}

.site-footer .social-icons a {
  margin-right: 15px;
  font-size: 20px;
  color: #f9c10b;
  transition: 0.3s ease;
}

.site-footer .social-icons a:hover {
  color: #fff;
  transform: scale(1.1);
}

/* Responsivo */
/* Responsivo */
@media (max-width: 767px) {
  .site-footer {
    text-align: center;
    padding: 40px 20px;
  }

  /* Força as colunas empilhadas e centralizadas */
  .site-footer .row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .site-footer .row > div {
    width: 100% !important;
    max-width: 400px;
    margin: 0 auto 30px auto !important;
    float: none !important;
  }

  /* Centraliza o texto dentro das colunas */
  .site-footer h5,
  .site-footer p,
  .site-footer a,
  .site-footer li {
    text-align: center !important;
  }

  /* Centraliza e ajusta os ícones sociais */
  .site-footer .social-icons {
    text-align: center !important;
    margin-top: 20px;
  }

  .site-footer .social-icons a {
    margin-right: 12px;
    font-size: 24px;
  }
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--white-color);
  border-radius: 20px;
  font-size: var(--copyright-text-font-size);
  color: var(--dark-color);
  display: inline-block;
  vertical-align: top;
  margin: 2px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--primary-color);
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .projects-thumb-large {
    min-height: 416px;
  }
}

@media screen and (max-width: 1280px) {
  .contact svg {
    bottom: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .custom-btn {
    font-size: var(--copyright-text-font-size);
    padding: 8px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 0;
  }

  .navbar-nav .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-header .social-icon {
    text-align: left;
    margin-top: 10px;
  }

  .carousel-caption {
    width: 100%;
  }

  .about-thumb {
    padding: 30px;
  }

  .about-image {
    height: auto;
    margin-bottom: 24px;
  }

  .contact-container-wrap {
    padding-bottom: 50px;
  }

  .contact-form {
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .contact-thumb {
    bottom: 0;
    margin-bottom: 0;
  }

  .site-footer {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  .contact-icon {
    font-size: 24px;
  }

  .site-header p {
    font-size: 14px;
  }

  .carousel-control-next, 
  .carousel-control-prev {
    bottom: 20px;
  }

  .nav-tabs .nav-link {
    margin-right: 0;
    margin-left: 0;
    padding: 15px;
  }


  .site-footer-wrap {
    flex-direction: column;
  }

  .copyright-text {
    padding-bottom: 10px;
  }
.mobile-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
}

}

/* CHAT BOT ATENDIMENTO --------------------
---------------------------- */

    .chat-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #007bff;
      color: white;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      z-index: 999;
    }

    .chat-container {
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 100%;
      max-width: 400px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      display: none;
      flex-direction: column;
      max-height: 600px;
      z-index: 998;
    }

    .chat-header {
      background: #007bff;
      color: white;
      padding: 15px;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-box {
      padding: 15px;
      overflow-y: auto;
      flex: 1;
      max-height: 400px;
    }

    .message {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
    }

    .bot {
      color: #444;
    }

    .user {
      color: #007bff;
      justify-content: flex-end;
      text-align: right;
    }

    .bot-avatar {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: url('https://cdn-icons-png.flaticon.com/512/4712/4712105.png') no-repeat center center;
      background-size: cover;
      flex-shrink: 0;
    }

    .message-content {
      background: #f1f1f1;
      border-radius: 10px;
      padding: 10px 14px;
      max-width: 75%;
    }

    .user .message-content {
      background: #e0f0ff;
      margin-left: auto;
    }

    .input-area {
      padding: 15px;
      border-top: 1px solid #ddd;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"] {
      flex: 1;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    button {
      background: #007bff;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 5px;
      cursor: pointer;
    }

    .options {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .checkbox-group label {
      display: block;
    }
	
/* GOOOOOOOGLE TRANSLATE */	
	