@font-face { 
    font-family: 'Calibri'; 
    src: url('../font/calibri/calibri.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal; 
} 

/* --- Variáveis --- */
:root {
    --pedra-font-title: 'Calibri', Candara, Segoe, 'Segoe UI', Optima, Arial, sans-serif;
    --pedra-font-body: 'Inter', sans-serif;
    --pedra-color-primary: #076AAF;
    --pedra-color-secondary: #8E98A8; 
    --pedra-color-white: #FFFFFF;
    --pedra-color-yellow:#FFCC00;
    --pedra-color-blue: #015094;
    --pedra-color-dark-blue: #042036;
    --pedra-color-light: #ECF0F1; /* Cinza claro */
    --pedra-color-dark: #1A252F; /* Quase preto */
}

/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  /* padding-top: 3rem; */
  color: var(--pedra-color-secondary);
  font-family: var(--pedra-font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--pedra-font-title);
  color: var(--pedra-color-primary);
}

.italic {
  font-style: italic;
}

.title-2 {
  font-family: var(--pedra-font-body);
  font-size: 5.6rem;
  font-weight: 900;
}

.title-3 {
  font-family: var(--pedra-font-body);
  color: var(--pedra-color-yellow);
  font-size: 4.5rem;
  font-weight: 800;
}

.title-4 {
  font-family: var(--pedra-font-body);
  font-size: 3rem;
  font-weight: 800;
}

.mt-5 {
  margin-top: 5rem ;
}

.mb-5 {
  margin-bottom: 5em ;
}

.mt-6 {
  margin-top: 6rem ;
}

.mb-6 {
  margin-bottom: 6em ;
}

.mt-7 {
  margin-top: 7rem ;
}

.mb-7 {
  margin-bottom: 7em ;
}

.mt-8 {
  margin-top: 8rem ;
}

.mb-8 {
  margin-bottom: 8rem ;
}

/* NAVBAR 
-------------------------------------------------- */
.menu-trapezio {
  position: fixed;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 95px 70px;
  display: flex;

  width: 890px;
  height: 80px;

  background-image: url('../img/header-bg.png');
  background-size: cover;  /* Ajusta para cobrir todo o menu */
  background-repeat: no-repeat;
  background-position: center center;

  /* border-radius: 32px 32px 18px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.20); */
  align-items: center;
}
.menu-trapezio .nav-link {
  color: white ;
  /* margin: 0 18px; */
  font-size: 0.8rem;
  border-radius: 8px;
  /* padding: 9px 14px; */
  transition: background .2s;
}
.menu-trapezio .nav-link.active, .menu-trapezio .nav-link:hover {
  background: rgba(255,255,255,0.16);
  color: #e3e3e3 ;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  color: #fff;
  margin-right: 60px;
  margin-left: 30px;
}

.nav-item {
  align-content: center;
  text-align: center;
  width: auto;
  min-width: 100px;
}

/* .nav-link {
  color: #fff ;
  margin-right: 10px;
  transition: color .2s;
} */

.nav-link.active,
.nav-link:hover {
  color: #5cacee ;
}

.dropdown-toggle::after {
  margin-left: 8px;
}

.dropdown-menu {
  background-color: #212529 ;
  border-radius: 20px;
  border: none;
  margin-top: 4px;
  min-width: 160px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  background: #343a40;
  color: #5cacee;
}

.menu-whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 4rem ;
}

.whatsapp-link {
  position: relative;
  width: 120px;
  height: 120px;
  display: inline-block;
}

.whatsapp-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Estado inicial */
.whatsapp-open {
  opacity: 0;
  transform: scale(0.9);
}

/* Hover */
.whatsapp-link:hover .whatsapp-closed {
  opacity: 0;
}

.whatsapp-link:hover .whatsapp-open {
  opacity: 1;
  transform: scale(1);
}


/* HOME PAGE CONTENT 
-------------------------------------------------- */
.img-logo-cinza, .img-nossas-unidades {
  max-width: 493px;
  width: 100%;
} 

.img-quem-somos {
  max-width: 984px;
  width: 100%;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  aspect-ratio: 16 / 9;
  height: auto;
}

/* QUEM-SOMOS CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.quem-somos .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.quem-somos .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */

.quem-somos-bg {
  z-index: 1;
  background-color: var(--pedra-color-white);
  margin-top: -15rem;
  border-radius: 25px 25px 0 0;
  padding-top: 5rem;
}

.quem-somos .lead {
  text-align: right;
}

.quem-somos-bg-2 {
  /* background-image: url('../img/bg-quem-somos.png'); */
}

.icon-hover {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.icon-hover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

/* Estado inicial */
.icon-hover-img {
  opacity: 0;
}

/* Hover */
.icon-hover:hover .icon-hover-img {
  opacity: 1;
}

.icon-hover:hover .icon-base {
  opacity: 0;
}


/* NOSSAS UNIDADES CONTENT
------------------------------------------------- */

.nossas-unidades {
  background-color: var(--pedra-color-blue);
  padding: 5rem;
}

/* DEPOIMENTOS CONTENT
-------------------------------------------------- */

#carouselDepoimentos .card{
  margin: 0 1.5rem;
  max-width: 370px;
  border-radius: 1rem;
  border-width: 2.5px;
  border-color: var(--pedra-color-secondary);
}

#carouselDepoimentos .card > .card-header {
  background-color: var(--pedra-color-blue);
  color: var(--pedra-color-white);
  text-align: center;
  font-size: 2rem;
  padding: 1rem;
  font-weight: 700;
  border-radius: 1rem 1rem 0 0;
}

#carouselDepoimentos .card > .card-body {
  padding: 1.2rem;
  text-align: center;
}

/* FOOTER CONTENT
-------------------------------------------------- */
footer {
  background-color: var(--pedra-color-dark-blue);
  height: 10rem;
}

/* PAGE CONTENT
-------------------------------------------------- */
.page__header {
  height: 260px;
  background-color: #025294;

  h1 {
    font-family: var(--pedra-font-body);
    font-weight: 900;
    font-size: 3.5rem;
    text-transform: uppercase;
    color: var(--pedra-color-white);
    margin-bottom: -14px;
  }
}

.page h2, .page h3 {
  font-family: Calibri, sans-serif;
  font-style: italic;
  color: var(--pedra-color-primary);
}

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

.list-unstyled li.active {
  font-weight: bold;
  color: var(--pedra-color-primary);
}

/* Contato Page
-------------------------------------------------- */

.contato-section {
  padding: 80px 0;
}

.contato-form {
  padding-right: 100px;
  /* background: var(--pedra-color-white); */
}

.contato-intro {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.contato-mapa iframe {
  min-height: 100%;
}

.contato-info i {
  font-size: 24px;
  margin-bottom: 10px;
}

/* Texto introdutório */
.page-contato .contato-intro {
  font-size: 1.05rem;
  color: #1f2d3d;
  margin-bottom: 50px;
  max-width: 480px;
}

/* Wrapper do CF7 (ou form padrão) */
.page-contato form {
  width: 100%;
}

/* Inputs e textarea */
.page-contato input[type="text"],
.page-contato input[type="email"],
.page-contato input[type="tel"],
.page-contato textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cfd4da;
  border-radius: 0;
  padding: 14px 4px;
  margin-bottom: 35px;
  font-size: 1rem;
  color: #1f2d3d;
  background: transparent;
  box-shadow: none;
}

/* Placeholder */
.page-contato ::placeholder {
  color: #9aa0a6;
  font-size: 0.95rem;
}

/* Remove estilos automáticos */
.page-contato input:focus,
.page-contato textarea:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #0b5ed7;
}

/* Textarea altura */
.page-contato textarea {
  resize: none;
  min-height: 120px;
}

/* Botão enviar */
.page-contato input[type="submit"],
.page-contato button[type="submit"] {
  width: 100%;
  background: #0b5ed7;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
  transition: background 0.3s ease;
}

/* Hover botão */
.page-contato input[type="submit"]:hover,
.page-contato button[type="submit"]:hover {
  background: #094db5;
}

/* Mensagens CF7 */
.page-contato .wpcf7-response-output {
  border: none;
  padding: 15px 0 0;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsivo */
@media (max-width: 991px) {
  .page-contato .contato-form {
    padding: 40px 25px;
  }
}

/* BACKGROUND TEXTURA – CONTATO
-------------------------------------------------- */

.page-contato {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background-color: #025294;
}

/* Fundo com textura */
.page-contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  /* CONTROLE AQUI */
  width: 70%;
  height: 100%;

  background-image: url("../img/bg-textura-form.png");
  background-repeat: repeat;
  background-size: auto;

  z-index: 0;
}

/* Garantir conteúdo acima do fundo */
.page-contato .container {
  position: relative;
  z-index: 1;
}

/* =========================
   INFO CONTATO
========================= */

.contato-info {
  padding-bottom: 40px;
}

.contato-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.contato-info-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.contato-info-text strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000;
}

.contato-info-text span,
.contato-info-text a {
  font-size: 0.8rem;
  color: var(--pedra-color-primary);
  text-decoration: none;
}

.contato-info-text a:hover {
  text-decoration: underline;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .menu-trapezio {
    width: 890px;
    height: 165px;
    padding: 0 70px;
  }

  .whatsapp-icon {
    top: -20px;
    left: -20px;
    width: 160px;
    height: 160px;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .menu-trapezio {
    width: 95%;
    padding: 0 40px;
    height: 72px;
  }

  .navbar-brand {
    margin-right: 30px;
    margin-left: 70px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-toggler {
    margin-right: 50px;
  }

  .menu-whatsapp {
    position: absolute;
    top: 70px;
    right: 70px;
    margin: 0;
  }

  .whatsapp-link {
    width: 90px;
    height: 90px;
  }

  .whatsapp-icon {
    width: 90px;
    height: 90px;
  }

  .quem-somos-bg {
    margin-top: -7rem;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .menu-trapezio {
    position: fixed;
    top: 0;
    left: 0;
    transform: unset;

    width: 100%;
    height: auto;

    padding: 12px 20px;
    border-radius: 0;
    
    background-color: var(--pedra-color-dark);
    background-image: none;
  }

  /* Logo menor */
  .logo-menu {
    max-height: 36px;
  }

  /* Menu colapsado */
  .navbar-collapse {
    margin-top: 16px;
    background: rgba(0,0,0,0.85);
    border-radius: 16px;
    padding: 16px;
  }

  /* Itens do menu */
  .navbar-nav {
    text-align: left;
  }

  .nav-item {
    width: 100%;
    text-align: left;
  }

  .nav-link {
    padding: 12px 14px;
    font-size: 1rem;
  }

  /* Dropdown */
  .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    margin-left: 12px;
    background: transparent ;
  }

  .dropdown-item {
    padding: 10px 0;
  }
  
  .menu-whatsapp {
    position: absolute;
    top: 70px;
    right: 15px;
    margin: 0;
  }

  .whatsapp-link {
    width: 64px;
    height: 64px;
  }

  .whatsapp-icon {
    width: 64px;
    height: 64px;
  }

  .title-2 {
    font-size: 4rem;
  }

  .title-3 {
    font-size: 3rem;
  }

  .mt-8 {
    margin-top: 4rem ;
  }

  .page__header {
    height: 100px;
  }

  .page__header {
    h1 {
      font-size: 2.5rem;
    }
  }

  .page-contato::before {
    width: 100%;
  }

  .carousel-inner {
    margin-top: 20px;
  }

  .quem-somos-bg {
      margin-top: 0rem;
      padding-top: 0rem;
  }

}
