/**
* Template Name: Empima 
* Template URL: https://bootstrapmade.com/knight-simple-one-page-bootstrap-template/
* Updated: Oct 16 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "Roboto",  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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #282828; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2B94E5; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #2B94E5; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2B94E5; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
  text-align: justify;
}


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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.mensagem-status {
  padding: 10px;
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  display: none;
}

.mensagem-status.success {
  background-color: green;
  color: white;
}

.mensagem-status.error {
  background-color: red;
  color: white;
}

.loading {
  display: none;
  text-align: center;
  margin-top: 10px;
  font-size: 16px;
}

.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 {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    min-height: 74px;

}

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

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

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

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Tornando a imagem responsiva */
.responsive-logo {
  width: auto; /* A imagem vai ocupar 100% da largura do contêiner */
  height: auto; /* Mantém a proporção da imagem */
  max-width: 300px; /* A largura máxima da imagem será 300px (ajuste conforme necessário) */
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(19, 19, 19, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

  .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;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    z-index: 9999;
    position: relative;
  }

  .mobile-nav-toggle:hover {
    background: #2B94E5;
    transform: scale(1.1);
  }

  /* Botão quando menu aberto */
  .mobile-nav-active .mobile-nav-toggle {
    position: fixed !important;
    top: 20px;
    right: 20px;
    z-index: 99999;
    background: #2B94E5;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(43, 148, 229, 0.6);
  }

  /* === ANIMAÇÃO === */
  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    padding: 100px 0 40px;
    margin: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    overflow-x: hidden;           /* SCROLL HORIZONTAL */
    transition: transform 0.75s cubic-bezier(0.32, 0.72, 0, 1);
    transform: translateX(100%);
    z-index: 9998;
  }

  /* Estado aberto - animação mais impactante */
  .mobile-nav-active .navmenu ul {
    display: block;
    transform: translateX(0);
  }

  /* Backdrop com fade suave */
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9997;
    transition: opacity 0.4s ease;
  }

  /* Links e resto do menu */
  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.85);
    padding: 16px 30px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    margin: 4px 0;
  }

  .navmenu a:hover {
    color: #ffffff;
    background: rgba(43, 148, 229, 0.1);
    border-left-color: var(--accent-color);
    padding-left: 35px;
  }

  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
    background: rgba(43, 148, 229, 0.15);
    border-left-color: var(--accent-color);
  }

  /* Ícones Dropdown */
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: rgba(43, 148, 229, 0.15);
    color: var(--accent-color);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: rotate(180deg);
  }

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

  /* Dropdown Submenu */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.4s ease;
  }

  .navmenu .dropdown ul ul {
    background: rgba(255, 255, 255, 0.05);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
  }

  /* Estado Ativo do Menu Mobile */
  .mobile-nav-active {
    overflow: hidden;
  }

  /* Backdrop Escuro */
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
  }

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

  /* Separador Visual */
  .navmenu ul::before {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin: 0 30px 30px;
    border-radius: 2px;
  }

  /* Logo no Menu Mobile */
  .navmenu ul::after {
    content: 'EMPIMA';
    display: block;
    position: absolute;
    top: 35px;
    left: 30px;
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
  }

  /* Animação de entrada dos links */
  .mobile-nav-active .navmenu ul li {
    animation: slideInRight 0.4s ease forwards;
    opacity: 0;
  }

  .mobile-nav-active .navmenu ul li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav-active .navmenu ul li:nth-child(2) { animation-delay: 0.15s; }
  .mobile-nav-active .navmenu ul li:nth-child(3) { animation-delay: 0.2s; }
  .mobile-nav-active .navmenu ul li:nth-child(4) { animation-delay: 0.25s; }
  .mobile-nav-active .navmenu ul li:nth-child(5) { animation-delay: 0.3s; }
  .mobile-nav-active .navmenu ul li:nth-child(6) { animation-delay: 0.35s; }
  .mobile-nav-active .navmenu ul li:nth-child(7) { animation-delay: 0.4s; }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background: linear-gradient(135deg, #000000 0%, #000000e5 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%);
  background-size: 80px 140px;
  opacity: 0.5;
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 30px;
}

/* Logo e Descrição */
.footer-about .logo img {
  max-height: 80px;
  transition: transform 0.3s ease;
}

.footer-about .logo:hover img {
  transform: scale(1.05);
}

.footer-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 20px;
}

/* Redes Sociais
.social-links {
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: #2B94E5;
  border-color: #2B94E5;
  color: #0a4d2e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
} */

/* Títulos das Colunas */
.footer h4 {
  color: #2B94E5;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #2B94E5;
}

/* Links do Footer */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 20px;
}

.footer-links ul li a::before {
  content: '\F285';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  font-size: 12px;
  color: #2B94E5;
  transition: transform 0.3s ease;
}

.footer-links ul li a:hover {
  color: #2B94E5;
  padding-left: 25px;
}

.footer-links ul li a:hover::before {
  transform: translateX(5px);
}

/* Informações de Contacto */
.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact .contact-item i {
  font-size: 20px;
  color: #2B94E5;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact .contact-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
  color: #2B94E5;
}

/* Barra de Copyright */
.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  margin-top: 40px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .copyright strong {
  color: #2B94E5;
  font-weight: 600;
}

.footer-bottom {
  color: #2B94E5;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

.footer-bottom i {
  animation: heartbeat 1.5s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    padding: 40px 0 20px;
  }

  .footer h4 {
    margin-top: 30px;
    font-size: 16px;
  }

  .footer-about .logo img {
    max-height: 60px;
  }

  .footer-bottom .col-md-6 {
    margin-bottom: 10px;
  }

  .footer-bottom .text-md-end {
    text-align: center !important;
  }
}

/* Scroll Top Button Enhancement */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  background: linear-gradient(135deg, #2B94E5, #0f6aaf);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s;
  box-shadow: 0 4px 15px rgba(1, 60, 138, 0.404);
}

.scroll-top i {
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, #1378c5, #075b9b);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(4, 74, 165, 0.514);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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 50%);
}

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color) 90%, white 50%);
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/

#home {
  width: 100% !important;
  height: 100svh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  
}

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

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

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

.home h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.home p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 20px 0;
  font-size: 24px;
}

@media (max-width: 768px) {
  .video-central {
    width: 100vw !important; 
    height: auto !important;
    object-fit: contain !important;
  }
}

/*--------------------------------------------------------------
# Hero Section com Card de Imagem
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #0a0a0a;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(43, 148, 229, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-section .row {
  align-items: center;
}

/* Texto do Hero */
.hero-section h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section h2 span {
  color: #2B94E5;
}

.hero-section p {
  font-family: 'Poppins', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-section .hero-separator {
  width: 50px;
  height: 3px;
  background: #2B94E5;
  margin-bottom: 25px;
}

/* Botões */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-section .btn-hero {
  display: inline-block;
  padding: 14px 36px;
  background: #2B94E5;
  color: #fff;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-section .btn-hero:hover {
  background: #0571c4;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(43, 148, 229, 0.192);
  color: #fff;
}

.hero-section .btn-hero-outline {
  display: inline-block;
  padding: 13px 36px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-section .btn-hero-outline:hover {
  border-color: #2B94E5;
  color: #2B94E5;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Hero Image Card
--------------------------------------------------------------*/
.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Badge no Card */
.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(43, 148, 229, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(43, 148, 229, 0.3);
  z-index: 2;
}

.hero-card-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-card-badge .badge-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

/* Decoração do Card */
.hero-image-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(43, 148, 229, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

/*--------------------------------------------------------------
# Hero Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
  }

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

  .hero-section .col-lg-6:first-child {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-separator {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-card img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hero-section .container {
    padding-top: 100px;
  }

  .hero-section h2 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-section .btn-hero,
  .hero-section .btn-hero-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image-card img {
    height: 280px;
  }

  .hero-card-badge {
    padding: 12px 20px;
  }

  .hero-card-badge .badge-number {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Hero Image Card
--------------------------------------------------------------*/
.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

/* Badge no Card */
.hero-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(43, 148, 229, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8x 20px rgba(43, 148, 229, 0.096);
}

.hero-card-badge .badge-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.hero-card-badge .badge-text {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
}

/* Decoração do Card */
.hero-image-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(43, 148, 229, 0.2);
  border-radius: 50%;
  z-index: 1;
}

.hero-image-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 1;
}

.hero-card-badge {
  z-index: 2;
}

/*--------------------------------------------------------------
# Hero Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-section .col-lg-6:first-child {
    text-align: center;
    margin-bottom: 50px;
  }

  .hero-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-section .hero-separator {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image-card img {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .hero-section h2 {
    font-size: 1.8rem;
  }

  .hero-section p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-section .btn-hero,
  .hero-section .btn-hero-outline {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-image-card img {
    height: 280px;
  }

  .hero-card-badge {
    padding: 12px 20px;
  }

  .hero-card-badge .badge-number {
    font-size: 1.5rem;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 30px;
  transition: all ease-in-out 0.3s;
  border-radius: 18px;
  border-bottom: 5px solid var(--surface-color);
  height: 100%;
}

.services .service-item .icon {
  color: var(--contrast-color);
  background: var(--accent-color);
  margin: 0;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.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;
}

@media (min-width: 1365px) {
  .services .service-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 130px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

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

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  color: var(--default-color);
  font-size: 28px;
  font-weight: 700;
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# trabalhos Section
--------------------------------------------------------------*/
.trabalhos .trabalhos-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.trabalhos .trabalhos-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}
/*--------------------------------------------------------------
# Trabalhos
--------------------------------------------------------------*/
.trabalhos .trabalhos-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.trabalhos .trabalhos-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0 5px 5px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.trabalhos .trabalhos-filters li:hover,
.trabalhos .trabalhos-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

/* ==================== ESTILO DO CARD ==================== */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.portfolio-item:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.portfolio-item img {
  width: 100%;
  height: 290px;           /* altura fixa - uniforme - pode ser de 260 ate 310*/
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  transform: scale(1.35);
}

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

/* Overlay + Lupa no centro */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

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

/* Lupa */
.preview-link {
  width: 58px;
  height: 58px;
  background: #2B94E5;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 15px rgba(43, 148, 229, 0.048);
  transition: all 0.3s ease;
}

.preview-link:hover {
  background: #0f85df;
  color: #ffffff;
  transform: scale(1.15) rotate(15deg);
  box-shadow: 0 8px 25px rgba(23, 110, 187, 0.507);
}


/*--------------------------------------------------------------
# promotion Section
--------------------------------------------------------------*/
.promotion .promotion-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.promotion .promotion-item h3 {
  padding: 15px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}

.promotion .promotion-item h4 {
  color: var(--accent-color);
  font-size: 42px;
  font-family: var(--default-font);
  font-weight: 500;
}

.promotion .promotion-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.promotion .promotion-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.promotion .promotion-item ul {
  padding: 20px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.promotion .promotion-item ul li {
  padding-bottom: 16px;
}

.promotion .promotion-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  text-decoration: line-through;
}

.promotion .promotion-item .btn-wrap {
  padding: 15px;
  text-align: center;
}

.promotion .promotion-item .btn-buy {
  color: var(--accent-color);
  background-color: transparent;
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.promotion .promotion-item .btn-buy:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.promotion .recommended .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.promotion .recommended .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.promotion .recommended-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 13px;
  padding: 3px 25px 6px 25px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 50px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

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

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

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# trabalhos Details Section
--------------------------------------------------------------*/
.trabalhos-details .trabalhos-details-slider img {
  width: 100%;
}

.trabalhos-details .swiper-wrapper {
  height: auto;
}

.trabalhos-details .swiper-button-prev,
.trabalhos-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.trabalhos-details .swiper-button-prev:after,
.trabalhos-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.trabalhos-details .swiper-button-prev:hover:after,
.trabalhos-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .trabalhos-details .swiper-button-prev,
  .trabalhos-details .swiper-button-next {
    display: none;
  }
}

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

.trabalhos-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.trabalhos-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.trabalhos-details .trabalhos-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.trabalhos-details .trabalhos-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.trabalhos-details .trabalhos-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.trabalhos-details .trabalhos-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.trabalhos-details .trabalhos-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.trabalhos-details .trabalhos-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.trabalhos-details .trabalhos-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.trabalhos-details .trabalhos-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.trabalhos-details .trabalhos-description p {
  padding: 0;
}

.trabalhos-details .trabalhos-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.trabalhos-details .trabalhos-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.trabalhos-details .trabalhos-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.trabalhos-details .trabalhos-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.trabalhos-details .trabalhos-description .testimonial-item .quote-icon-left,
.trabalhos-details .trabalhos-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

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

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

.trabalhos-details .trabalhos-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Áreas de Atuação - Cards Simples
--------------------------------------------------------------*/
.areas-atuacao {
  background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.area-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 28px;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(43, 148, 229, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Borda animada no hover */
.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2B94E5, #0571c4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.area-card:hover::before {
  transform: scaleX(1);
}

.area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(43, 148, 229, 0.15);
  border-color: rgba(43, 148, 229, 0.2);
}

/* Ícone do Card */
.area-card .card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #2B94E5 0%, #0571c4 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(43, 148, 229, 0.25);
}

.area-card:hover .card-icon {
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 8px 25px rgba(43, 148, 229, 0.35);
}

.area-card .card-icon i {
  font-size: 27px;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.area-card:hover .card-icon i {
  transform: scale(1.1);
}

/* Título do Card */
.area-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #282828;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.area-card:hover h3 {
  color: #2B94E5;
}

/* Descrição do Card */
.area-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .area-card {
    padding: 28px 22px;
  }

  .area-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .area-card .card-icon i {
    font-size: 28px;
  }

  .area-card h3 {
    font-size: 1.15rem;
  }

  .area-card p {
    font-size: 0.9rem;
  }
}

/* *:where(:not(html, body)) {
  max-width: 100vw;
} */

/*--------------------------------------------------------------
# Contact Form - Mensagens de Status
--------------------------------------------------------------*/
/* Loading Spinner */
#loading {
  display: none;
  padding: 15px;
  margin: 15px 0;
  text-align: center;
  font-size: 15px;
  color: #2B94E5;
  font-weight: 500;
}

#loading::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 3px solid #2B94E5;
  border-top-color: transparent;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Mensagem de Status */
#mensagem-status {
  display: none;
  padding: 18px 25px;
  margin: 15px 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  animation: fadeSlideDown 0.4s ease;
}

#mensagem-status.success {
  background: linear-gradient(135deg, #059652, #04803f);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(5, 150, 82, 0.3);
  border-left: 5px solid #03692f;
}

#mensagem-status.error {
  background: linear-gradient(135deg, #df1529, #c21222);
  color: #ffffff;
  box-shadow: 0 5px 20px rgba(223, 21, 41, 0.3);
  border-left: 5px solid #a0101c;
}

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

/* Fade out */
#mensagem-status.fade-out {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.contact .info-item a {
  font-size: 14px;
  color: var(--default-color);
  transition: 0.3s;
}

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