/* =========================================================
   Arquivo: typography.css
   Descrição: Define a tipografia global do site
   Autor: Mário Correia Pedro
   Fonte principal: Montserrat (Google Fonts)
   ========================================================= */

/* Importa as variações da fonte Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Tipografia base do site */
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
}

/* Títulos principais */
h1, h2, h3, h4, h5, h6,
.pbmit-title,
.pbmit-element-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; /* Bold */
  letter-spacing: 0.5px;
  color: #111;
}

/* Subtítulos e descrições */
.pbmit-subtitle,
.pbmit-heading-desc {
  font-weight: 400;
  color: #444;
}

/* Parágrafos e textos comuns */
p {
  font-weight: 400;
  /*color:;*/
  margin-bottom: 1rem;
}

/* Botões */
.pbmit-btn, 
button, 
a.button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Menus e navegação */
nav, 
.menu, 
.navbar a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Pequenos ajustes visuais */
strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}





/* ================================
   FOOTER STYLING - MONTSERRAT
   ================================ */
.site-footer {
  font-family: 'Montserrat', sans-serif;
  background-color: #000; /* fundo preto */
  color: #f1f1f1; /* texto claro */
}

.site-footer h5 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.site-footer p,
.site-footer li,
.site-footer a,
.site-footer small {
  font-weight: 400;
  color: #dcdcdc;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Links */
.footer-links a:hover {
 
  text-decoration: underline;
}

/* Slogan */
.site-footer p.fst-italic {
  font-style: italic;
  font-weight: 400;
  color: #ccc;
}

/* Ícones sociais */
.site-footer .social-links a {
  display: inline-block;
  color: #dcdcdc;
  font-size: 1.2rem;
  margin-right: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer .social-links a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

/* Linha divisória */
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Copyright */
.site-footer small {
  color: #bbbbbb;
  font-size: 0.85rem;
}


/* =========================================
   AJUSTE ESPECÍFICO: Secção "Como Funciona"
   ========================================= */
.pbmit-heading-subheading h2.pbmit-title,
.pbmit-heading-subheading h4.pbmit-subtitle {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

/* Subtítulo */
.pbmit-heading-subheading h4.pbmit-subtitle {
  font-weight: 500;
  color: red;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Responsivo: espaçamento adequado no mobile */
@media (max-width: 768px) {
  .pbmit-heading-subheading h2.pbmit-title {
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 0 10px;
    margin-bottom: 1rem;
  }
}



/* ================================
   TÍTULO: "O que nos torna diferentes?"
   ================================ 
.pbmit-heading-subheading {
  
  margin-bottom: 3rem;
  font-family: 'Montserrat', sans-serif;
}

 Título principal 
.pbmit-heading-subheading .pbmit-title {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  color: #111;
  letter-spacing: 0.5px;
  margin-bottom: 0;
  display: inline-block;
  transition: transform 0.4s ease, color 0.4s ease;
}

 Palavra destacada 
.pbmit-heading-subheading .pbmit-title .destaque {
  color: var(--pbmit-global-color, #f39c12);
  display: inline-block;
  position: relative;
}

 Efeito leve ao passar o mouse 
.pbmit-heading-subheading .pbmit-title:hover {
  transform: translateY(-3px);
}

 Responsivo 
@media (max-width: 768px) {
  .pbmit-heading-subheading .pbmit-title {
    font-size: 1.8rem;
    line-height: 1.4;
    padding: 0 10px;
  }
}*/

.video-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  height: 580px;
  border-radius: 20px;
}

/* recorte no canto inferior esquerdo */
.video-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 80px;
  background: #fff; /* cor de fundo da página */
  border-top-right-radius: 20px;
  z-index: 2;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Retângulo Experiência */
.experience-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--pbmit-global-color, #e40000);
  color: #fff;
  padding: 16px 30px;
  border-radius: 0 20px 0 0;
  border: 2px solid #fff; /* nova borda branca */
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
}

/* Número 15 */
.experience-box .number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: all 0.4s ease;
}

/* Hover elegante */
.experience-box:hover {
  background: #b40000;
 
  box-shadow: 8 6px 16px rgba(0,0,0,0.35);
  border-color: white; /* borda levemente rosada no hover */
}

.experience-box:hover .number {
  color: #ffdede;
}

/* Responsivo */
@media (max-width: 768px) {
  .video-wrapper {
    height: 340px;
    margin-top: 25px;
  }

  .video-wrapper::after {
    width: 100px;
    height: 60px;
  }

  .experience-box {
    padding: 12px 22px;
    font-size: 0.95rem;
    border-radius: 0 15px 0 0;
    border-width: 1.5px;
  }

  .experience-box .number {
    font-size: 1.2rem;
  }
}
