/* Fonts */
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Space Grotesk", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* Global Colors — Hematita Geotecnologia */
:root {
  --background-color: #ffffff;
  --default-color: #333333;
  --heading-color: #0f3142;
  --accent-color: #ff6201;
  --accent-gold: #0a47bc;
  --accent-red: #dd3625;
  --accent-green: #3c7447;
  --accent-sand: #daac7d;
  --accent-brown: #905a45;
  --accent-maroon: #64292a;
  --accent-lightblue: #9cb8c3;
  --accent-navy: #0f3142;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #0f3142;
  --nav-hover-color: #ff6201;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0f3142;
  --nav-dropdown-hover-color: #ff6201;
}

.light-background {
  --background-color: #f6f8f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f3142;
  --default-color: #dbe6ea;
  --heading-color: #ffffff;
  --surface-color: #16425a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: #25D366;
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-gold);
}

.header .branding {
  background-color: var(--background-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 120px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    font-weight: bold;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 120px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  border-radius: 15px;
  background-color: #071c3d;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: white;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: white;
}

.footer .credits a {
  color: white;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 118px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/* Linha decorativa sob os titulos de secao */
.section-title h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#inicio {
  scroll-margin-top: 118px;
}

@media (max-width: 1199px) {
  #inicio {
    scroll-margin-top: 100px;
  }
}

.btn-whatsapp {
  position: fixed;
  right: 1px;
  bottom: 70px;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 60px;
  z-index: 1000;
}

.btn-whatsapp img {
  width: 225px;
}

@media (max-width: 575px) {

  .hero .btn-hero-whatsapp {
    font-size: 14px;
    padding: 12px 24px;
    margin-bottom: 20px;
  }

  .btn-whatsapp img {
    width: 180px;
  }

  .btn-whatsapp {
    width: 125px;
    height: 35px;
    bottom: 80px;
  }
}

/*--------------------------------------------------------------
# Hematita Geotecnologia — Custom Styles
--------------------------------------------------------------*/

/* Topbar WhatsApp icon color */
.header .topbar .contact-info i {
  color: #25D366 !important;
}

.header .logo img {
  border-radius: 10px;
}

/* Secao "Como funciona" — passo badges */
.passo-badge {
  background: var(--accent-gold) !important;
  color: #fff !important;
  font-weight: 800;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
}

/* Sobre section — heading menor no mobile */
@media (max-width: 575px) {
  #sobre h3 { font-size: 1.35rem; }
}

/* Botoes WhatsApp verdes */
.btn-success {
  background-color: #25D366 !important;
  border-color: #25D366 !important;
}
.btn-success:hover {
  background-color: #1daa52 !important;
  border-color: #1daa52 !important;
}

/* Icones de servico — accent no hover */
.services .service-item:hover .icon {
  background: var(--surface-color) !important;
  border: 2px solid var(--accent-color) !important;
}
.services .service-item:hover .icon i {
  color: var(--accent-color) !important;
}

/* Eyebrow / badge pill usado em varias secoes */
.eyebrow-badge {
  background: var(--accent-color);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
}

.eyebrow-badge.blue {
  background: var(--accent-gold);
}

/* Faixa de credibilidade / stats */
.stats-bar {
  background: linear-gradient(135deg, #0a222f 0%, #0f3142 55%, #16425a 100%) !important;
  padding: 34px 0 !important;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 15% 30%, rgba(249, 136, 70, 0.18), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(30, 98, 142, 0.35), transparent 50%);
  pointer-events: none;
}
.stats-bar .stat-number {
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  font-family: var(--heading-font);
}
.stats-bar .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  margin-top: 4px;
}

/* Chips de servicos / valores */
.service-tag {
  background: color-mix(in srgb, var(--accent-lightblue), transparent 65%);
  border: 1px solid color-mix(in srgb, var(--accent-gold), transparent 55%);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-tag i {
  color: var(--accent-color);
  font-size: 12px;
}

/* Diferenciais — cards */
.diff-card {
  background: var(--surface-color);
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 49, 66, 0.12);
}

/*--------------------------------------------------------------
# Clientes — logos
--------------------------------------------------------------*/
.client-logo {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-logo img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 49, 66, 0.12);
}

.client-logo-wide {
  padding-left: 8px;
  padding-right: 8px;
}

/*--------------------------------------------------------------
# Hero Section — split layout
--------------------------------------------------------------*/
.hero-split {
  position: relative;
  background: radial-gradient(ellipse at 20% 20%, rgba(249, 136, 70, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 80%, rgba(30, 98, 142, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #0a222f 0%, #0f3142 55%, #123a4d 100%);
  overflow: hidden;
  padding-top: 70px;
  padding-bottom: 70px;
}

.hero-split::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 70%);
  pointer-events: none;
}

.hero-split .container {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 136, 70, 0.15);
  border: 1px solid rgba(249, 136, 70, 0.4);
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-split h1 {
  color: #fff;
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-split h1 span {
  color: var(--accent-color);
}

.hero-split .hero-lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 50px;
  transition: all 0.2s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-mini-stats div {
  min-width: 110px;
}

.hero-mini-stats .num {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.hero-mini-stats .lbl {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

.hero-visual .frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-visual .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-visual .float-card {
  position: absolute;
  background: rgba(15, 49, 66, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 18px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.hero-visual .float-card.top {
  top: -18px;
  left: -18px;
}

.hero-visual .float-card.bottom {
  bottom: -18px;
  right: -18px;
}

.hero-visual .float-card .num {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent-color);
}

.hero-visual .float-card .lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .hero-split h1 {
    font-size: 2.1rem;
  }
  .hero-visual {
    margin-top: 50px;
  }
  .hero-visual .float-card {
    padding: 10px 14px;
  }
}

@media (max-width: 575px) {
  .hero-split h1 {
    font-size: 1.7rem;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .btn-hero-primary, .btn-hero-secondary {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Setores de Atuação — gallery cards
--------------------------------------------------------------*/
.sector-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 26px rgba(15, 49, 66, 0.14);
}

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

.sector-card .sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 25, 33, 0.92) 0%, rgba(10, 25, 33, 0.15) 60%, rgba(10, 25, 33, 0.05) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.sector-card .sector-overlay i {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.sector-card .sector-overlay h3 {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.25;
}

.sector-card .sector-overlay p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12.5px;
  margin-bottom: 0;
  line-height: 1.5;
}

.sector-card .sector-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}

.sector-card:hover img {
  transform: scale(1.08);
}

.sector-card:hover .sector-zoom {
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Serviços — accordion de categorias
--------------------------------------------------------------*/
.services-accordion .accordion-item {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--surface-color);
}

.services-accordion .accordion-button {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-navy);
  background: var(--surface-color);
  padding: 22px 24px;
  gap: 16px;
}

.services-accordion .accordion-button .cat-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-right: 4px;
}

.services-accordion .accordion-button .cat-title {
  flex: 1 1 auto;
  text-align: left;
}

.services-accordion .accordion-button .cat-count {
  flex: 0 0 auto;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: right;
  min-width: 72px;
  margin-right: 10px;
  white-space: nowrap;
}

.services-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  box-shadow: none;
}

.services-accordion .accordion-button:not(.collapsed) .cat-icon {
  background: var(--accent-color);
  color: #fff;
}

.services-accordion .accordion-item:nth-child(even) .accordion-button .cat-icon {
  background: color-mix(in srgb, var(--accent-gold), transparent 88%);
  color: var(--accent-gold);
}

.services-accordion .accordion-item:nth-child(even) .accordion-button:not(.collapsed) {
  color: var(--accent-gold);
  background: color-mix(in srgb, var(--accent-gold), transparent 94%);
}

.services-accordion .accordion-item:nth-child(even) .accordion-button:not(.collapsed) .cat-icon {
  background: var(--accent-gold);
  color: #fff;
}

.services-accordion .accordion-item {
  margin-bottom: 0;
  height: 100%;
}

.services-accordion .accordion-button:focus {
  box-shadow: none;
}

.services-accordion .accordion-button::after {
  background-size: 1.1rem;
}

.services-accordion .accordion-body {
  padding: 6px 24px 26px 24px;
}

.services-accordion .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 1;
}

@media (min-width: 768px) {
  .services-accordion .service-list {
    columns: 2;
    column-gap: 30px;
  }
}

.services-accordion .service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--default-color);
  padding: 8px 0;
  break-inside: avoid;
}

.services-accordion .service-list li i {
  color: var(--accent-green);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.services-search {
  max-width: 420px;
  margin: 0 auto 40px;
  position: relative;
}

.services-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 82%);
  font-size: 14.5px;
}

.services-search input:focus {
  outline: none;
  border-color: var(--accent-color);
}

.services-search i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio / Galeria Section
--------------------------------------------------------------*/
.portfolio-filters {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 40px 0;
}

.portfolio-filters li {
  cursor: pointer;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  color: var(--default-color);
  transition: all 0.3s;
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  display: block;
  aspect-ratio: 4 / 3;
}

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

.portfolio-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 5, 5, 0.85) 0%, rgba(20, 5, 5, 0.05) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item .portfolio-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-item .portfolio-zoom {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.3s;
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay,
.portfolio-item:hover .portfolio-zoom {
  opacity: 1;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Mapa / Contato
--------------------------------------------------------------*/
.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--background-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 30px;
}

.contact .info-item .icon {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 2px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .info-item .social-links a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Sobre — colagem de fotos
--------------------------------------------------------------*/
.photo-collage {
  position: relative;
  padding: 20px 30px 30px 0;
}

.photo-collage .main-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px -10px rgba(10, 25, 33, 0.25);
}

.photo-collage .main-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.photo-collage .accent-photo {
  position: absolute;
  width: 48%;
  bottom: 0;
  left: -10px;
  border-radius: 14px;
  overflow: hidden;
  border: 6px solid var(--background-color);
  box-shadow: 0 18px 40px -8px rgba(10, 25, 33, 0.3);
}

.photo-collage .accent-photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.photo-collage .stat-pill {
  position: absolute;
  top: 30px;
  right: 0;
  background: var(--accent-color);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 16px 32px -6px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.photo-collage .stat-pill .num {
  font-family: var(--heading-font);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.photo-collage .stat-pill .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0;
}

.about-stat-row .stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-stat-row .stat i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-stat-row .stat strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: var(--heading-color);
  line-height: 1.1;
}

.about-stat-row .stat span {
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.mission-vision-band {
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(10, 25, 33, 0.15);
}

.mission-vision-band > div {
  flex: 1 1 260px;
  padding: 32px 34px;
  color: #fff;
}

.mission-vision-band .mv-mission {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
}

.mission-vision-band .mv-vision {
  background: linear-gradient(135deg, var(--accent-gold) 0%, color-mix(in srgb, var(--accent-gold), black 20%) 100%);
}

.mission-vision-band .mv-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.mission-vision-band p {
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
}

@media (max-width: 991px) {
  .photo-collage {
    padding: 20px 20px 60px 0;
    margin-bottom: 10px;
  }
}

/*--------------------------------------------------------------
# Portfólio — cards
--------------------------------------------------------------*/
.portfolio-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 10px 26px -8px rgba(15, 49, 66, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px -10px rgba(15, 49, 66, 0.28);
}

.portfolio-card .pf-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.portfolio-card .pf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.portfolio-card:hover .pf-media img {
  transform: scale(1.08);
}

.portfolio-card .pf-play {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 8px 20px -4px color-mix(in srgb, var(--accent-color), transparent 30%);
}

.portfolio-card .pf-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 20, 32, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.portfolio-card .pf-caption {
  padding: 18px 20px;
  border-top: 3px solid var(--accent-color);
}

.portfolio-card:nth-child(even) .pf-caption {
  border-top-color: var(--accent-gold);
}

.portfolio-card .pf-caption h3 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.portfolio-card .pf-caption p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

/*--------------------------------------------------------------
# Modal de vídeo do portfólio
--------------------------------------------------------------*/
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99997;
  background: rgba(6, 12, 22, 0.94);
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
}

.video-modal-overlay.is-open {
  display: flex;
}

.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.video-modal-box video {
  width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  background: #000;
  display: block;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.video-modal-close:hover {
  background: var(--accent-color);
}

.video-modal-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Footer — colunas
--------------------------------------------------------------*/
.footer .footer-cnpj {
  font-size: 12.5px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin-top: 10px;
}

.footer .footer-contact i {
  color: var(--accent-color);
  margin-right: 8px;
}
