/**
 * Estilos customizados do tema
 *
 * @package SafeRope2025
 * @since 1.0.0
 */

/* ==========================================================================
   BUTTONS - Sistema Universal de Botões
   ========================================================================== */

/* Botão Base */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 8px;
  border: none;
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  text-decoration: none;
}

/* Botão Primário Dark */
.btn-primary-dark {
  background-color: #1e3246;
  color: #f9f9f9;
}

.btn-primary-dark:hover {
  background-color: #28aab4;
  color: #f9f9f9;
}

/* Botão Primário Light */
.btn-primary-light {
  background-color: #f9f9f9;
  color: #1e3246;
}

.btn-primary-light:hover {
  background-color: #28aab4;
  color: #f9f9f9;
  box-shadow: none;
}

/* Botão Secundário Dark */
.btn-secondary-dark {
  background-color: transparent;
  color: #1e3246;
  border: 1.2px solid #1e3246;
  box-shadow: none;
}

.btn-secondary-dark:hover {
  background-color: #1e3246;
  color: #f9f9f9;
  border-color: #1e3246;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
}

.btn-secondary-dark:hover img,
.btn-secondary-dark:hover svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(324deg) brightness(104%) contrast(96%);
}

/* Botão Secundário Light */
.btn-secondary-light {
  background-color: transparent;
  color: #f9f9f9;
  border: 1.2px solid #f9f9f9;
  box-shadow: none;
}

.btn-secondary-light img,
.btn-secondary-light svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(324deg) brightness(104%) contrast(96%);
}

.btn-secondary-light:hover {
  background-color: #f9f9f9;
  color: #1e3246;
  border-color: #f9f9f9;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
}

.btn-secondary-light:hover img,
.btn-secondary-light:hover svg {
  filter: brightness(0) saturate(100%) invert(18%) sepia(23%) saturate(1334%)
    hue-rotate(173deg) brightness(95%) contrast(90%);
}

/* ==========================================================================
   HEROSECTION
   ========================================================================== */

.herosection {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: #f9f9f9;
}

/* Background com vídeo e imagem sobreposta */
.herosection-background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-color: #1e3246;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-background.png');
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  z-index: 2;
}

/* ==========================================================================
   NAVBAR - Pixel Perfect Implementation
   ========================================================================== */

.navbar {
  position: relative;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

/* Navbar Sticky - Estados ao rolar */
.navbar.navbar-scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-dark.navbar-scrolled {
  background: rgba(30, 50, 70, 0.88);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid #1e3246;
}

.navbar-light.navbar-scrolled {
  background: rgba(249, 249, 249, 0.88);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid #ffffff;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 24px;
  transition: padding 0.3s ease;
}

.navbar.navbar-scrolled .container {
  padding: 24px 0;
}

/* Logo */
.navbar-logo {
  width: 192px;
  height: 87.224px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar.navbar-scrolled .navbar-logo {
  width: 120px;
  height: auto;
}

.navbar-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.navbar-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Menu Desktop */
.navbar-menu {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.menu-items {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-link {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #f9f9f9;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-link:hover {
  color: #2dc8d2;
}

/* Dropdown */
.menu-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu-dropdown .menu-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.dropdown-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Content */
.dropdown-content {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  background: #f0f0f0;
  border-radius: 8px;
  border: 1px solid rgba(30, 50, 70, 0.12);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 100;
}

.menu-dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.dropdown-item:hover {
  opacity: 0.7;
}

.dropdown-bullet {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.dropdown-bullet svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dropdown-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #1e3246;
  transition: all 0.3s ease;
}

/* Cor clara para mobile toggle quando navbar é dark */
.navbar-dark .mobile-menu-toggle span {
  background-color: #f9f9f9;
}

/* ==========================================================================
   HERO CONTENT
   ========================================================================== */

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding-top: 100px;
  padding-bottom: 56px;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1066px;
}

.hero-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 72px;
  line-height: 88px;
  text-align: center;
  color: #1e3246;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Cores claras quando tem background escuro */
.herosection-background ~ .hero-container .hero-title,
.herosection:has(.herosection-background) .hero-title {
  color: #f9f9f9;
}

.title-light {
  font-weight: 300;
}

.title-bold {
  font-weight: 800;
  color: #1e3246;
}

/* Cor clara para bold quando tem background escuro */
.herosection-background ~ .hero-container .title-bold,
.herosection:has(.herosection-background) .title-bold {
  color: #f0f0f0;
}

.title-underline {
  width: 386px;
  height: 9px;
  margin-top: -4.5px;
}

.title-underline svg {
  width: 100%;
  height: 100%;
}

.hero-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  color: #1e3246;
  max-width: 848px;
  margin: 0;
}

/* Cor clara quando tem background escuro */
.herosection-background ~ .hero-container .hero-subtitle,
.herosection:has(.herosection-background) .hero-subtitle {
  color: #f9f9f9;
}
/* ==========================================================================
   BACKGROUND GERAL - Seções com gradiente turquesa
   ========================================================================== */

.section-background-general {
  position: relative;
  width: 100%;
  background-image: url('../images/background-geral.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   SEÇÃO DE IMAGEM - Dobra 03
   ========================================================================== */

.dobra-image-section {
  position: relative;
  width: 100%;
}

.dobra-image-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  width: 100%;
  align-items: end;
}

.dobra-image-item {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

/* Alturas específicas para efeito escada */
.dobra-image-item:nth-child(1) {
  height: 300px;
}

.dobra-image-item:nth-child(2) {
  height: 340px;
}

.dobra-image-item:nth-child(3) {
  height: 400px;
}

.dobra-image-item:nth-child(4) {
  height: 340px;
}

.dobra-image-item:nth-child(5) {
  height: 300px;
}

.dobra-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Responsividade */
@media (max-width: 1024px) {
  .dobra-image-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .dobra-image-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    width: 100%;
  }
  
  .dobra-image-item:nth-child(1) {
    height: 240px;
  }

  .dobra-image-item:nth-child(2) {
    height: 280px;
  }

  .dobra-image-item:nth-child(3) {
    height: 320px;
  }

  .dobra-image-item:nth-child(4) {
    height: 280px;
  }

  .dobra-image-item:nth-child(5) {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .dobra-image-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  
  .dobra-image-item {
    border-radius: 12px;
  }
  
  .dobra-image-section img {
    border-radius: 12px;
  }
  
  .dobra-image-item:nth-child(1) {
    height: 150px;
  }

  .dobra-image-item:nth-child(2) {
    height: 180px;
  }

  .dobra-image-item:nth-child(3) {
    height: 210px;
  }

  .dobra-image-item:nth-child(4) {
    height: 180px;
  }

  .dobra-image-item:nth-child(5) {
    height: 150px;
  }
}

@media screen and (min-width: 481px) {
	.mobile-visible {display:none;}
}

@media (max-width: 480px) {
  .dobra-image-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
  }
	
	.desktop-visible {
		display: none;
	}
  
  .dobra-image-item {
    border-radius: 12px;
  }
  
  .dobra-image-section img {
    border-radius: 12px;
  }
  
  .dobra-image-item:nth-child(1) {
    height: 90px;
  }

  .dobra-image-item:nth-child(2) {
    height: 120px;
  }

  .dobra-image-item:nth-child(3) {
    height: 150px;
  }

  .dobra-image-item:nth-child(4) {
    height: 120px;
  }

  .dobra-image-item:nth-child(5) {
    height: 90px;
  }
}

/* ==========================================================================
   WHO WE HELP - Accordion Horizontal
   ========================================================================== */

.who-we-help-section {
  position: relative;
  width: 100%;
  padding: 64px 0 0 0;
}

/* Header */
.wwh-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  width: 100%;
}

.wwh-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #2dc8d2;
  margin: 0;
  white-space: nowrap;
}

.wwh-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wwh-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Cards Container */
.wwh-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  grid-auto-rows: 1fr;
}

/* Card Base */
.wwh-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Expandido - ocupa 2 colunas */
.wwh-card-expanded {
  grid-column: span 2;
  background: radial-gradient(
    circle at 17px 581.14px,
    rgba(255, 255, 255, 0.24) 0%,
    rgba(255, 255, 255, 0.08) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid #ffffff;
  min-width: 0;
  height: 100%;
}

/* Primeiro card expandido (Facility) - define altura naturalmente */
.wwh-card-expanded[data-card='facility'] {
  height: auto;
}

/* Card Colapsado - ocupa 1 coluna */
.wwh-card-collapsed {
  grid-column: span 1;
  min-width: 0;
  border: 1px solid #28aab4;
  height: 100%;
}

/* Background da imagem para cards colapsados */
.wwh-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay escuro para cards colapsados */
.wwh-card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 4.0977px 377.51px,
    rgba(30, 50, 70, 1) 0%,
    rgba(30, 50, 70, 0) 100%
  );
  z-index: 2;
}

/* Conteúdo do Card */
.wwh-card-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  z-index: 3;
  height: 100%;
}

/* Card Facility expandido - conteúdo com altura automática */
.wwh-card-expanded[data-card='facility'] .wwh-card-content {
  height: auto;
}

/* Card Expandido - Layout com duas colunas */
.wwh-card-expanded .wwh-card-content {
  gap: 40px;
}

.wwh-card-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out 0.3s forwards;
}

.wwh-card-collapsed .wwh-card-left {
  opacity: 1;
  animation: none;
}

.wwh-card-right {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
  align-self: stretch;
  flex: 0 0 auto;
  opacity: 0;
  animation: fadeIn 0.4s ease-in-out 0.3s forwards;
}

.wwh-card-collapsed .wwh-card-right {
  display: none;
}

.wwh-card-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex: 1;
  min-height: 0;
}

.wwh-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Títulos */
.wwh-card-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #f9f9f9;
  margin: 0;
}

.wwh-card-expanded .wwh-card-title {
  flex-shrink: 0;
}

/* Texto do card expandido */
.wwh-card-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
}

.wwh-card-text p {
  margin: 0 0 16px 0;
}

.wwh-card-text p:last-child {
  margin-bottom: 0;
}

.wwh-card-text strong {
  font-weight: 700;
}

/* Animação Fade In */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Hover Effects */
.wwh-card-collapsed:hover {
  transform: scale(1.02);
  border-color: #2dc8d2;
}

.wwh-card-collapsed:hover .wwh-card-overlay {
  opacity: 0.8;
}

/* Responsividade - Desktop acima de 1024px */
@media (min-width: 1024px) {
  .wwh-cards-container {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }

  /* APENAS o card Facility expandido tem altura automática */
  .wwh-card-expanded[data-card='facility'] {
    height: auto;
    min-height: 354px;
  }

  .wwh-card-expanded[data-card='facility'] .wwh-card-content {
    height: auto;
    min-height: fit-content;
  }

  /* Todos os outros cards (expandidos ou colapsados) têm 100% */
  .wwh-card-expanded:not([data-card='facility']),
  .wwh-card-collapsed {
    height: 100%;
  }

  .wwh-card-expanded:not([data-card='facility']) .wwh-card-content {
    height: 100%;
  }

  /* Garante que a imagem do card expandido preenche verticalmente */
  .wwh-card-expanded .wwh-card-right {
    flex: 1;
    min-height: 0;
  }

  .wwh-card-expanded .wwh-card-image {
    flex: 1;
    height: 100%;
  }

  .wwh-card-expanded[data-card='facility'] .wwh-card-left {
    flex: 1;
    min-height: fit-content;
  }
}

/* ==========================================================================
   WHAT WE DO - Accordion Vertical
   ========================================================================== */

.what-we-do-section {
  position: relative;
  width: 100%;
  padding: 80px 0 0 0;
}

/* Header */
.wwd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
  width: 100%;
}

.wwd-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #2dc8d2;
  margin: 0;
  white-space: nowrap;
}

.wwd-icons {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wwd-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* Duas Colunas */
.wwd-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}

.wwd-left {
  flex: 1;
  min-width: 0;
}

.wwd-right {
  width: 556px;
  flex-shrink: 0;
}

/* Esconder coluna direita no mobile (as imagens agora estão nos accordions) */
@media (max-width: 768px) {
  .wwd-right {
    display: none;
  }
}

/* Accordion */
.wwd-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.wwd-accordion-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Tab Button */
.wwd-accordion-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background: rgba(249, 249, 249, 0.16);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #f9f9f9;
  text-align: left;
  transition: all 0.3s ease;
}

.wwd-accordion-item.wwd-active .wwd-accordion-tab {
  background: #f9f9f9;
  color: #1e3246;
}

.wwd-accordion-tab:hover {
  background: rgba(249, 249, 249, 0.24);
}

.wwd-accordion-item.wwd-active .wwd-accordion-tab:hover {
  background: #f9f9f9;
}

.wwd-tab-text {
  flex: 1;
  white-space: normal;
}

.wwd-tab-icon {
  margin-left: 20px;
  font-size: 20px;
  flex-shrink: 0;
}

.dobra-image-item img {
	object-position: top;
}

/* Content */
.wwd-accordion-content {
  padding: 24px 0 0 0;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  display: none;
}

.wwd-accordion-item.wwd-active .wwd-accordion-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.wwd-accordion-content p {
  margin: 0 0 16px 0;
}

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

/* Imagem Mobile dentro do Accordion */
.wwd-image-mobile {
  display: block;
  width: 100%;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
}

.wwd-image-mobile img {
  width: 100%;
  height: 240px;
  display: block;
  border-radius: 16px;
	object-fit: cover;
}

/* Esconder imagens mobile no desktop (a partir de 769px) */
@media (min-width: 769px) {
  .wwd-image-mobile {
    display: none;
  }
}

/* Imagem */
.wwd-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 384px;
  border-radius: 16px;
  overflow: hidden;
}

.wwd-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s ease;
}

.wwd-image img.wwd-img-active {
  opacity: 1;
  z-index: 2;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
  position: relative;
  width: 100%;
  padding: 120px 0 0 0;
}

.cta-section .container {
  position: relative;
}

/* CTA Container */
.cta-container {
  position: relative;
  width: 100%;
  padding: 89px 64px 64px;
  border-radius: 24px;
  box-shadow: 0px 0px 250px 0px rgba(45, 200, 210, 0.24);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* Background Image */
.cta-background {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Overlay */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 50, 70, 0.88);
  mix-blend-mode: multiply;
  opacity: 0.56;
  z-index: 2;
}

/* Content */
.cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

/* Title */
.cta-title {
  font-family: 'Epilogue', sans-serif;
  font-size: 40px;
  line-height: 56px;
  color: #f9f9f9;
  text-align: center;
  margin: 0;
  max-width: 900px;
}

.cta-title-bold {
  font-weight: 800;
}

.cta-title-light {
  font-weight: 300;
}

/* Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1e3246;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: #2dc8d2;
  border-color: #2dc8d2;
  color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(45, 200, 210, 0.24);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* Icon Badge */
.cta-icon-badge {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.cta-icon-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #28aab4;
  border: 2px solid #f9f9f9;
  box-shadow: 0px 12px 24px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cta-icon-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTA Contact Specific Styles */
.cta-contact-title {
  font-weight: 800;
  max-width: 100%;
}

.cta-contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}

.contact-item {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #f9f9f9;
  margin: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Ícones específicos da seção .cta-contact-info */
.cta-contact-info .contact-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-contact-info .contact-icon svg {
  width: 16px;
  height: 16px;
  fill: #2dc8d2;
}

/* ==========================================================================
   WHY SAFE ROPE ACCESS
   ========================================================================== */

.wsra-section {
  position: relative;
  width: 100%;
  padding: 80px 0 0 0;
}

/* Título */
.wsra-title {
  width: 100%;
  margin-bottom: 40px;
}

.wsra-title svg {
  width: 100%;
  height: auto;
  max-height: 79px;
}

/* Imagem */
.wsra-image {
  width: 100%;
	height: 700px;
  margin-bottom: 40px;
  border-radius: 24px;
  overflow: hidden;
}

.wsra-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Cards Grid */
.wsra-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.wsra-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

/* Card */
.wsra-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 24px;
  border-radius: 8px;
  min-width: 0;
}

.wsra-card-border {
  background: transparent;
  border: 2px solid rgba(249, 249, 249, 0.16);
}

.wsra-card-bg {
  background: rgba(249, 249, 249, 0.08);
  border: 2px solid transparent;
}

/* Ícone */
.wsra-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.wsra-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Texto */
.wsra-card p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  text-align: center;
  margin: 0;
}

.wsra-card p strong {
  font-weight: 700;
}

/* ==========================================================================
   CERTIFICATIONS
   ========================================================================== */

.certifications-section {
  position: relative;
  width: 100%;
  padding: 80px 0;
}

.certifications-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #2dc8d2;
  text-align: center;
  margin: 0 0 48px 0;
}

.certifications-grid {
  display: flex;
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}

.certification-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 20px;
  min-height: 140px;
}

.certification-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.certifications-cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.certifications-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.certifications-button:hover {
  background: #2dc8d2;
  color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(45, 200, 210, 0.24);
}

.certifications-button svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
  position: relative;
  width: 100%;
  padding: 0 0 120px 0;
}

/* Header */
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
}

.testimonials-icon {
  width: 48px;
  height: 48px;
}

.testimonials-icon svg {
  width: 100%;
  height: 100%;
}

.testimonials-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #2dc8d2;
  text-align: center;
  margin: 0;
}

.testimonials-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #f9f9f9;
  text-align: center;
  margin: 0;
}

/* Grid */
.testimonials-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.testimonials-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Card */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 20px 20px;
  border-radius: 8px;
  border-left: 8px solid #28aab4;
  background: rgba(249, 249, 249, 0.04);
  color: #f9f9f9 !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(249, 249, 249, 0.08);
  transform: translateY(-2px);
}

.testimonial-card-highlighted {
  background: rgba(249, 249, 249, 0.12);
}

.testimonial-card-highlighted:hover {
  background: rgba(249, 249, 249, 0.16);
}

.testimonial-card-tall {
  flex: 1;
}

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

.testimonial-stars {
  display: flex;
  gap: 8px;
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  color: #e9ba22;
}

.testimonial-link {
  font-family: 'Epilogue', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
}

/* Nome */
.testimonial-name {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #f9f9f9;
  margin: 0;
}

/* Texto */
.testimonial-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  margin: 0;
}

/* ==========================================================================
   WHERE WE WORK
   ========================================================================== */

.where-we-work-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  overflow: hidden;
}

/* Background */
.where-we-work-background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/where-we-work-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.where-we-work-bg-color {
  position: absolute;
  inset: 0;
  background: #2dc8d2;
}

.where-we-work-bg-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.where-we-work-bg-image img {
  height: 100%;
  left: -2.59%;
  top: 0;
  width: 100%;
  max-width: none;
}

.where-we-work-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 68.198% 40.1% at 50% 50%,
    rgba(45, 200, 210, 0.24) 0%,
    rgba(45, 200, 210, 0.4) 44.999%,
    rgba(45, 200, 210, 0.8) 100%
  );
}

/* Container */
.where-we-work-container {
  position: relative;
  display: flex;
  gap: 48px;
  width: 100%;
  z-index: 1;
}

/* Left */
.where-we-work-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}

/* Header */
.where-we-work-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.where-we-work-icon {
  width: 48px;
  height: 48px;
}

.where-we-work-icon svg {
  width: 100%;
  height: 100%;
}

/* Location Icon Colors - Default (Dark version) */
.where-we-work-icon .location-icon-bg {
  fill: #f9f9f9;
  fill-opacity: 0.16;
}

.where-we-work-icon .location-icon-outline {
  fill: #1e3246;
}

.where-we-work-icon .location-icon-pin {
  fill: #2dc8d2;
}

/* Location Icon Colors - Light version */
.where-we-work-light .where-we-work-icon .location-icon-bg {
  fill: #f9f9f9;
  fill-opacity: 0.16;
}

.where-we-work-light .where-we-work-icon .location-icon-outline {
  fill: #1e3246;
}

.where-we-work-light .where-we-work-icon .location-icon-pin {
  fill: #2dc8d2;
}

.where-we-work-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #1e3246;
  margin: 0;
}

.where-we-work-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: #1e3246;
  margin: 0;
}

/* Grid */
.where-we-work-grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.where-we-work-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Card */
.where-we-work-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid #f9f9f9;
  background: linear-gradient(
    to right,
    rgba(249, 249, 249, 0.69),
    rgba(249, 249, 249, 0.553)
  );
  text-decoration: none;
  transition: none;
}

.where-we-work-card-tall {
  flex: 1;
}

.where-we-work-card p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1e3246;
  margin: 0;
}

/* Right - Image */
.where-we-work-right {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 0px 250px 0px rgba(30, 50, 70, 0.24);
  min-width: 0;
}

.where-we-work-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Where We Work - Light Version (Contact Page) */
.where-we-work-light .where-we-work-bg-color {
  background: #f9f9f9;
}

.where-we-work-light .where-we-work-bg-gradient {
  display: none;
}

.where-we-work-light .where-we-work-card {
  border: 1px solid #f9f9f9;
  background: linear-gradient(
    to right,
    rgba(30, 50, 70, 0.11),
    rgba(30, 50, 70, 0.165)
  );
}

/* ==========================================================================
   CONTACT FORM SECTION
   ========================================================================== */

.contact-section {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background: #1e3246;
}

.contact-container {
  display: flex;
  gap: 48px;
  width: 100%;
  align-items: center;
}

/* Left Column */
.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-icon {
  width: 48px;
  height: 48px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #2dc8d2;
  margin: 0;
}

.contact-title .title-light {
  font-weight: 300;
}

.contact-title .title-bold {
  font-weight: 800;
}

.contact-description {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-description p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  margin: 0;
}

.contact-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  margin: 0;
}

.contact-details {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f9f9f9;
  margin: 0;
}

.contact-cta-text {
  font-size: 24px !important;
  line-height: 32px !important;
}

.contact-phone {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  color: #2dc8d2;
}

/* Right Column - Form */
.contact-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
}

.contact-form-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #f9f9f9;
  margin: 0;
  width: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.contact-field {
  flex: 1;
  min-width: 0;
}

.contact-field-full {
  width: 100%;
}

.contact-field input,
.contact-input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid #f9f9f9;
  border-radius: 8px;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 34px;
  color: #f9f9f9;
  transition: all 0.3s ease;
}

.contact-field input::placeholder,
.contact-input::placeholder {
  color: #f9f9f9;
  opacity: 1;
}

.contact-field input:focus,
.contact-input:focus {
  outline: none;
  border-color: #2dc8d2;
  background: rgba(45, 200, 210, 0.05);
}

.contact-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: #f9f9f9;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.05);
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.contact-submit:hover {
  background: #2dc8d2;
  color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0px 16px 40px 0px rgba(45, 200, 210, 0.24);
}

.contact-arrow {
  font-size: 16px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  position: relative;
  width: 100%;
  background: #101f2f;
  border-top: 2px solid #2dc8d2;
}

/* Footer Main */
.footer-main {
  padding: 80px 0;
}

/* Footer 4-Column Layout */
.footer-container-4col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Column 1: Company Info */
.footer-col-company {
  gap: 32px;
}

.footer-logo {
  width: 192px;
  height: auto;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Footer Infos */
.footer-infos {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #f9f9f9;
}

/* Footer Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-icon svg {
  width: 100%;
  height: 100%;
  fill: #f9f9f9;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon {
  display: block;
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* Column 2: Navigation */
.footer-col-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #2dc8d2;
  margin: 0 0 16px 0;
  text-transform: uppercase;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list > li > a {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-list > li > a:hover {
  color: #2dc8d2;
}

/* Navigation Groups (Industries, Services) - Removed, now using separate columns */

/* Column 2 & 3: Industries and Services with Blue Titles */
.footer-col-industries,
.footer-col-services {
  gap: 20px;
}

/* Column 4: About & Legal with Button */
.footer-col-about-legal {
  gap: 20px;
}

.footer-col-about-legal .btn-secondary {
  margin-top: 12px;
  width: fit-content;
}

/* ==========================================================================
   BACK TO TOP BUTTON
   ========================================================================== */

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background-color: #28aab4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0px 8px 24px rgba(40, 170, 180, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #2dc8d2;
  transform: translateY(-4px);
  box-shadow: 0px 12px 32px rgba(40, 170, 180, 0.4);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Responsive: ajustar distância em mobile */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
  }

  .back-to-top svg {
    width: 18px;
    height: 18px;
  }
}

/* ==========================================================================
   Header Styles (páginas internas)
   ========================================================================== */

.site-header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-branding {
  flex: 0 0 auto;
}

.site-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.site-description {
  margin: 5px 0 0;
  font-size: 14px;
  color: #666;
}

.custom-logo-link img {
  max-height: 60px;
  width: auto;
}

/* ==========================================================================
   Navigation (páginas internas)
   ========================================================================== */

.main-navigation {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-container {
  display: block;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: block;
  padding: 10px 0;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-list a:hover {
  color: #28aab4;
}

/* Submenu */
.menu-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 10px 0;
}

.menu-list li:hover > .sub-menu {
  display: flex;
}

.menu-list .sub-menu a {
  padding: 10px 20px;
}

/* ==========================================================================
   Content Area
   ========================================================================== */

.content-area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.has-sidebar .content-area {
  grid-template-columns: 1fr 300px;
}

.main-content {
  min-width: 0;
}

/* ==========================================================================
   Posts
   ========================================================================== */

.posts-list {
  display: grid;
  gap: 40px;
}

.post-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.post-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content-wrapper {
  padding: 30px;
}

.entry-title {
  margin: 0 0 15px;
  font-size: 28px;
  line-height: 1.3;
}

.entry-title a {
  color: #333;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #28aab4;
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.entry-categories {
  margin-bottom: 15px;
}

.entry-categories a {
  display: inline-block;
  padding: 5px 12px;
  background: #28aab4;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s ease;
}

.entry-categories a:hover {
  background: #2dc8d2;
}

.entry-content {
  margin: 20px 0;
  line-height: 1.8;
}

.read-more-link {
  display: inline-block;
  padding: 10px 20px;
  background: #28aab4;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.read-more-link:hover {
  background: #2dc8d2;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.widget {
  margin-bottom: 40px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 2px solid #28aab4;
}

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

.widget li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.widget li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
  margin: 40px 0;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current {
  display: inline-block;
  padding: 10px 15px;
  background: #f0f0f0;
  color: #333;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.pagination a:hover,
.pagination .current {
  background: #28aab4;
  color: #fff;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.comments-area {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #e0e0e0;
}

.comments-title {
  margin-bottom: 30px;
  font-size: 24px;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.comment-list .comment {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.comment-list .children {
  list-style: none;
  margin-left: 40px;
  margin-top: 20px;
}

.comment-author img {
  border-radius: 50%;
  margin-right: 15px;
}

.comment-metadata {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.comment-content {
  margin-top: 15px;
}

.reply {
  margin-top: 15px;
}

.comment-reply-link {
  font-size: 14px;
  color: #28aab4;
  font-weight: 600;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

/* ==========================================================================
   NAVBAR VARIANTS - Light and Dark
   ========================================================================== */

/* Navbar Light (Páginas internas) */
.navbar-light {
  background-color: #f9f9f9;
  border-bottom: 1px solid #f0f0f0;
}

.navbar-light .menu-link {
  color: #1e3246;
}

.navbar-light .menu-link:hover {
  color: #2dc8d2;
}

.navbar-light .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(18%) sepia(23%) saturate(1334%)
    hue-rotate(173deg) brightness(95%) contrast(90%);
}

.navbar-dark .dropdown-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(324deg) brightness(104%) contrast(96%);
}

.navbar-dark .dropdown-content {
  background: #f0f0f0;
}

.navbar-dark .dropdown-text {
  color: #1e3246;
}

.navbar-light .mobile-menu-toggle span {
  background-color: #1e3246;
}

.navbar-dark .mobile-menu-toggle span {
  background-color: #f9f9f9;
}

/* ==========================================================================
   HERO SECTION WITH COLUMNS - Generic Component
   Used in: Industries, Services pages, etc.
   ========================================================================== */

.herosection-columns {
  background-color: #f9f9f9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-container-columns {
  display: flex;
  gap: 48px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 56px;
}

/* Coluna Esquerda */
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

/* Header do Hero */
.hero-header-columns {
  position: relative;
  width: 100%;
  max-width: 616px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title-columns {
  margin: 0;
  color: #1e3246;
}

.hero-title-columns .title-light {
  display: block;
  font-family: 'Epilogue', sans-serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 88px;
}

.hero-title-columns .title-bold {
  display: block;
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 80px;
}

/* Underline decorativo */
.title-underline-columns {
  position: relative;
  left: 0;
  width: 473px;
  max-width: 100%;
  height: auto;
}

.title-underline-columns .title-underline-image {
  width: 100%;
  height: auto;
}

/* Descrição */
.hero-description-columns {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

/* Coluna Direita - Grid de Imagens */
.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-images-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  box-shadow: 0px 0px 250px 0px rgba(45, 200, 210, 0.32);
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.hero-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Hero Single Image - Nova implementação */
.hero-single-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
}

.hero-single-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* ==========================================================================
   CTA ACTION SECTION - Generic Component
   Used in: Industries, Services pages, etc.
   ========================================================================== */

.cta-action-section {
  width: 100%;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
  padding: 0;
}

.cta-action-section .cta-container {
  width: 100%;
  max-width: 1280px;
  padding: 0;
  box-sizing: content-box;
}

.cta-action-section .cta-box {
  background-color: #2dc8d2;
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.cta-action-section .cta-text {
  flex: 1;
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #f9f9f9;
  margin: 0;
  min-width: 0;
}

.cta-action-section .cta-buttons {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* Responsividade Hero Columns e CTA */
@media (max-width: 1024px) {
  .hero-container-columns {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
    gap: 24px;
  }

  .hero-header-columns {
    width: 100%;
    max-width: 100%;
  }

  .hero-title-columns .title-light,
  .hero-title-columns .title-bold {
    font-size: 48px;
    line-height: 56px;
  }

  .title-underline-columns {
    width: 100%;
    max-width: 400px;
  }

  .hero-images-grid {
    min-height: 400px;
  }

  .hero-single-image {
    min-height: 400px;
    height: auto;
  }

  .cta-action-section .cta-box {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 24px 20px;
    width: 100%;
    box-sizing: border-box;
  }

  .cta-action-section .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-action-section .cta-buttons .btn {
    width: 100%;
  }

  .cta-action-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cta-action-section .cta-container {
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .navbar.navbar-scrolled .container {
    padding: 16px;
    max-width: 100%;
  }
  .hero-title-columns .title-light,
  .hero-title-columns .title-bold {
    font-size: 36px;
    line-height: 44px;
  }

  .hero-images-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
    min-height: auto;
  }

  .hero-single-image {
    min-height: 300px;
  }
}

/* ==========================================================================
   INFO CARDS SECTION - Generic Component
   Used in: Contact, Services pages, etc.
   ========================================================================== */

.info-section {
  width: 100%;
  background-color: #f9f9f9;
  padding: 80px 0 80px 0;
}

/* Section Header */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.section-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #1e3246;
  margin: 0;
}

.section-description {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  max-width: 630px;
  margin: 0;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 24px;
  width: 100%;
}

/* Grid com 5 colunas */
.cards-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Grid com 6 colunas */
.cards-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Grid com 4 colunas */
.cards-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Grid com 3 colunas */
.cards-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Info Card */
.info-card {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 120px;
}

.card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle {
  width: 100%;
  height: 100%;
  display: block;
}

.card-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   TABS SECTION - Generic Component
   Used in: Industries, Services pages, etc.
   ========================================================================== */

.tabs-section {
  background-color: #f9f9f9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 120px;
}

.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
  padding-top: 56px;
}

/* Intro Header (antes das tabs) */
.tabs-intro-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.tabs-intro-icon {
  width: 48px;
  height: 48px;
}

.tabs-intro-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tabs-intro-tag {
  background: #f0f0f0;
  border-radius: 500px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs-intro-tag p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #1e3246;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tabs-intro-subtitle {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #1e3246;
  text-align: center;
  margin: 0;
}

/* Header e Tabs */
.tabs-header {
  padding-top: 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 5;
  padding-bottom: 0;
}

.tabs-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-bottom: 1px solid #2dc8d2;
  position: relative;
}

.tab-button {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1e3246;
  background: none;
  border: none;
  padding: 0 0 32px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.tab-button:hover {
  color: #2dc8d2;
}

.tab-button-active {
  font-weight: 700;
  color: #1e3246;
  border-bottom: 8px solid #2dc8d2;
  margin-bottom: -1px;
}

/* Content */
.tab-content {
  display: none;
  width: 100%;
}

.tab-content-active {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.tab-content-wrapper {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}

/* Imagem */
.tab-image {
  flex: 0 0 auto;
  width: 467px;
  height: 649px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.tab-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Texto */
.tab-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
  max-width: 765px;
}

.tab-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #1e3246;
}

.tab-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-description p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

.tab-description p strong {
  font-weight: 700;
}

/* What we offer */
.tab-offer {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tab-offer-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0;
}

.tab-offer-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-offer-list p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

/* CTAs */
.tab-ctas {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.tab-footer-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

.tab-ctas-secondary {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* Two Column Layout - Services Page */
.tab-two-columns {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  width: 100%;
}

.tab-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.tab-column-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  color: #1e3246;
  margin: 0;
}

.tab-small-image {
  width: 100%;
  height: 240px;
  border-radius: 16px;
  overflow: hidden;
}

.tab-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tab-text-content {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1e3246;
  margin: 0;
}

/* Small Cards Grid */
.tab-small-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.tab-small-card {
  background: #f0f0f0;
  border: 1px solid rgba(30, 50, 70, 0.12);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-small-card-header {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tab-bullet-icon {
  width: 20px;
  position: relative;
  flex-shrink: 0;
}

/* Bullet Icon - Used for list items */
.bullet-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
  display: inline-block;
}

/* Bullet List - Lista com ícones bullet */
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 12px;
}

.bullet-list li:last-child {
  margin-bottom: 0;
}

.bullet-list li .bullet-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.tab-small-card-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

.tab-small-card-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

.tab-small-card-text em {
  font-family: 'Epilogue', sans-serif;
  font-style: italic;
  font-weight: 400;
}

/* Single card (not in grid) */
.tab-column > .tab-small-card {
  width: 100%;
}

/* Image + Text Layout Variations */
.tab-img-text-row {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.tab-img-text-row.reverse {
  flex-direction: row-reverse;
}

.tab-large-image {
  flex: 1;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.tab-large-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.tab-large-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Large Cards Grid - Multiple Columns */
.tab-large-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.tab-cards-row {
  display: grid;
  gap: 24px;
  width: 100%;
}

.tab-cards-row.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tab-cards-row.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tab-cards-row.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Link wrapper for product cards with PDF */
.tab-large-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tab-large-card-link:hover {
  transform: translateY(-4px);
}

.tab-large-card-link:hover .tab-large-card {
  box-shadow: 0px 8px 24px rgba(30, 50, 70, 0.15);
  border-color: #28aab4;
}

.tab-large-card {
  background: #f0f0f0;
  border: 1px solid rgba(30, 50, 70, 0.12);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.tab-card-image {
  width: 100%;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  background: #e0e0e0;
  position: relative;
}

.tab-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2dc8d2;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.tab-large-card-link:hover .tab-card-image::before {
  opacity: 0.96;
}

.tab-card-image::after {
  content: 'DOWNLOAD BROCHURE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: 'Epilogue', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

.tab-large-card-link:hover .tab-card-image::after {
  opacity: 1;
}

.tab-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsividade Info Cards */
@media (max-width: 1024px) {
  .info-section {
    padding: 0 0 60px 0;
  }

  .section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .section-description {
    font-size: 15px;
    line-height: 22px;
    max-width: 90%;
  }

  .cards-grid-5,
  .cards-grid-6,
  .cards-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-card {
    padding: 20px 14px;
    min-height: 100px;
  }

  .card-text {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 0 0 40px 0;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-description {
    font-size: 14px;
    line-height: 20px;
  }

  .cards-grid-5,
  .cards-grid-6,
  .cards-grid-4,
  .cards-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .info-card {
    padding: 16px 12px;
    min-height: 90px;
    gap: 12px;
  }

  .card-text {
    font-size: 14px;
    line-height: 20px;
  }
}

/* Responsividade Tabs */
@media (max-width: 1024px) {
  .tabs-nav {
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tab-button {
    font-size: 18px;
    padding-bottom: 24px;
  }

  .tab-content-wrapper {
    flex-direction: column;
  }

  .tab-image {
    width: 100%;
    height: 400px;
  }

  .tab-text {
    max-width: 100%;
  }

  .tab-two-columns {
    flex-direction: column;
    gap: 48px;
  }

  .tab-img-text-row,
  .tab-img-text-row.reverse {
    flex-direction: column;
  }

  .tab-large-image {
    height: 300px;
  }

  .tab-cards-row.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-cards-row.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-cards-row.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 768px) {
  .tabs-nav {
    gap: 12px;
    padding-left: 20px;
    padding-right: 20px;
    overflow-y: hidden;
  }

  .tab-button {
    font-size: 16px;
    padding-bottom: 20px;
    flex-shrink: 0;
  }

  .tab-title {
    font-size: 28px;
    line-height: 36px;
  }

  .tab-image {
    height: 300px;
  }

  .tab-footer-text {
    font-size: 18px;
  }

  .tab-ctas,
  .tab-ctas-secondary {
    flex-direction: column;
    width: 100%;
  }

  .tab-ctas .btn,
  .tab-ctas-secondary .btn {
    width: 100%;
  }

  .tab-small-cards {
    grid-template-columns: 1fr;
  }

  .tab-cards-row.cols-4,
  .tab-cards-row.cols-3,
  .tab-cards-row.cols-2 {
    grid-template-columns: 1fr;
  }

  .tab-column-title {
    font-size: 20px;
    line-height: 28px;
  }

  .tab-text-content {
    font-size: 18px;
  }
}

.comment-form input[type='text'],
.comment-form input[type='email'],
.comment-form input[type='url'],
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
}

.comment-form p {
  margin-bottom: 20px;
}

.submit-comment-button {
  padding: 12px 30px;
  background: #28aab4;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-comment-button:hover {
  background: #2dc8d2;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: #101f2f;
  color: #f9f9f9;
}

.footer-widgets {
  padding: 60px 0;
}

.footer-widgets-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-widget {
  margin-bottom: 0;
}

.footer-widget-title {
  margin: 0 0 20px;
  font-size: 18px;
  color: #f9f9f9;
}

.footer-bottom {
  background: #101f2f;
  padding: 30px 0;
  text-align: center;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  margin: 0;
  font-size: 14px;
}

.copyright a {
  color: #f9f9f9;
  font-weight: 600;
}

.footer-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-menu-list a {
  color: #f9f9f9;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.footer-menu-list a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Search Form
   ========================================================================== */

.search-form-wrapper {
  display: flex;
  gap: 10px;
}

.search-field {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 16px;
}

.search-submit {
  padding: 12px 20px;
  background: #28aab4;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-submit:hover {
  background: #2dc8d2;
}

/* ==========================================================================
   404 Error Page
   ========================================================================== */

.error-404-content {
  text-align: center;
  padding: 60px 0;
}

.error-title {
  font-size: 120px;
  margin: 0;
  color: #28aab4;
}

.error-subtitle {
  font-size: 32px;
  margin: 20px 0;
}

.error-suggestions {
  margin-top: 60px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.error-suggestions > div {
  margin-bottom: 40px;
}

.useful-links,
.recent-posts-list,
.categories-list {
  list-style: none;
  padding: 0;
}

.useful-links li,
.recent-posts-list li,
.categories-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.breadcrumbs {
  padding: 15px 0;
  margin-bottom: 30px;
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #28aab4;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Tablets e Mobile - Esconde dropdowns e mostra menu mobile */
@media (max-width: 1024px) {
  .dropdown-content {
    display: none !important;
  }

  .menu-dropdown:hover .dropdown-icon {
    transform: none;
  }

  /* Footer: 2 colunas em tablet */
  .footer-container-4col {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .has-sidebar .content-area {
    grid-template-columns: 1fr;
  }

  .sidebar {
    margin-top: 40px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 58px;
  }

  .hero-subtitle {
    font-size: 20px;
    line-height: 32px;
  }

  .dobra-image-section {
    padding: 60px 0;
  }

  .who-we-help-section {
    padding: 24px 0 0 0;
  }

  .wwh-header {
    margin-bottom: 24px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 16px;
  }

  .wwh-icon {
    width: 32px;
    height: 32px;
  }

  .wwh-title {
    font-size: 40px;
    line-height: 48px;
  }

  .wwh-cards-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto !important;
    gap: 20px;
  }

  .wwh-card {
    grid-column: span 1 !important;
    height: auto;
  }

  .wwh-card-expanded {
    flex: none;
    width: 100%;
    min-height: 450px;
  }

  .wwh-card-collapsed {
    flex: none;
    width: 100%;
    height: 300px;
  }

  .wwh-card-expanded .wwh-card-content {
    flex-direction: row;
  }

  .wwh-card-right {
    width: 100%;
  }

  .what-we-do-section {
    padding: 60px 0 0 0;
  }

  .wwd-header {
    margin-bottom: 48px;
  }

  .wwd-title {
    font-size: 40px;
    line-height: 48px;
  }

  .wwd-columns {
    flex-direction: column;
    gap: 40px;
  }

  .wwd-right {
    width: 100%;
  }

  .wwd-image {
    min-height: 300px;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-container {
    padding: 80px 24px 48px;
  }

  .cta-title {
    font-size: 40px;
    line-height: 48px;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 24px;
  }

  .contact-item {
    font-size: 18px;
  }

  .wsra-section {
    padding: 60px 0 0 0;
  }

  .wsra-row {
    flex-wrap: wrap;
  }

  .wsra-card {
    flex: 1 1 calc(50% - 12px);
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #1e3246;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 30px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .navbar-menu.active {
    left: 0;
  }

  .menu-items {
    flex-direction: column;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }

  .menu-dropdown {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-link {
    color: #f9f9f9 !important;
  }

  .menu-link:hover {
    color: #2dc8d2 !important;
  }

  .navbar-menu .btn {
    background-color: transparent;
    color: #f9f9f9;
    border: 1.2px solid #f9f9f9;
  }

  .navbar-menu .btn:hover {
    background-color: #f9f9f9;
    color: #1e3246;
    border-color: #f9f9f9;
  }

  /* Contact right */
  .contact-right {
    width: 100% !important;
  }

  /* Footer */
  .footer-col-company {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .dropdown-content {
    display: none;
  }

  .dropdown-content.open {
    display: flex !important;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 16px;
    gap: 16px;
    flex-direction: column;
    width: 100%;
    max-width: 200px;
    min-width: 0;
  }

  .dropdown-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(324deg) brightness(104%) contrast(96%) !important;
  }

  .dropdown-text {
    color: #f9f9f9 !important;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .dropdown-item {
    max-width: 100%;
  }

  .dropdown-item:hover .dropdown-text {
    color: #2dc8d2;
  }

  /* Footer: 1 coluna em mobile */
  .footer-container-4col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-col-company {
    text-align: center;
    align-items: center;
  }

  .footer-infos {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact-list {
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact-list li {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: center;
  }

  .menu-link,
  .menu-dropdown {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(249, 249, 249, 0.1);
  }

  .menu-dropdown .menu-link {
    padding: 0;
    border-bottom: none;
  }

  .btn-quote {
    width: 100%;
  }

  .navbar .container {
    padding: 20px 24px;
  }

  .navbar-logo {
    width: 140px;
    height: 63.44px;
  }

  .hero-container {
    padding-top: 40px;
    padding-bottom: 0px;
    gap: 24px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 52px;
  }

  .title-underline {
    width: 280px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    max-width: 90%;
  }

  .btn-hero-cta,
  .btn-quote {
    padding: 16px 32px;
    font-size: 16px;
  }

  .dobra-image-section {
    padding: 40px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: left;
  }

  .footer-menu-list {
    flex-direction: column;
    gap: 10px;
  }

  .error-title {
    font-size: 80px;
  }

  .comment-list .children {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
    line-height: 42px;
  }

  .title-underline {
    width: 220px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .dobra-image-section {
    padding: 30px 0;
  }

  .wwh-title {
    font-size: 32px;
    line-height: 40px;
  }

  .wwh-cards-container {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    height: auto !important;
    gap: 16px;
  }

  .wwh-card {
    grid-column: span 1 !important;
    height: auto;
  }

  .wwh-card-expanded,
  .wwh-card-collapsed {
    width: 100%;
    min-height: 200px;
  }

  .wwh-card-expanded .wwh-card-content {
    flex-direction: column-reverse;
    padding: 24px;
  }

  .wwh-card-left,
  .wwh-card-right {
    width: 100%;
  }

  .wwh-card-image {
    max-height: 120px;
  }

  .what-we-do-section {
    padding: 40px 0 0 0;
  }

  .wwd-header {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
  }

  .wwd-title {
    font-size: 32px;
    line-height: 40px;
  }

  .wwd-icon {
    width: 32px;
    height: 32px;
  }

  .wwd-accordion-tab {
    font-size: 18px;
    padding: 16px 20px;
  }

  .wwd-accordion-content {
    font-size: 15px;
    line-height: 22px;
  }

  .wwd-image {
    min-height: 250px;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-container {
    padding: 70px 24px 40px;
  }

  .cta-title {
    font-size: 28px;
    line-height: 36px;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
  }

  .cta-icon-badge {
    top: -40px;
  }

  .cta-icon-circle {
    width: 80px;
    height: 80px;
  }

  .contact-item {
    font-size: 16px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .wsra-section {
    padding: 40px 0 0 0;
  }

  .certifications-section {
    padding: 60px 0;
  }

  .certifications-title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 32px;
  }

  .certifications-grid {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }

  .certification-item {
    flex: 1 1 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }

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

  .testimonials-title {
    font-size: 40px;
    line-height: 48px;
  }

  .testimonials-subtitle {
    font-size: 18px;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .where-we-work-section {
    padding: 80px 0;
  }

  .where-we-work-title {
    font-size: 40px;
    line-height: 48px;
  }

  .where-we-work-subtitle {
    font-size: 20px;
  }

  .where-we-work-container {
    flex-direction: column;
  }

  .where-we-work-grid {
    flex-direction: column;
  }

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

  .contact-title {
    font-size: 40px;
    line-height: 48px;
  }

  .contact-form-title {
    font-size: 20px;
    line-height: 28px;
  }

  .contact-cta-text {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-left {
    gap: 24px;
  }

  .footer-main {
    padding: 60px 0;
  }

  .footer-infos {
    font-size: 18px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links {
    padding: 60px 0;
  }

  .footer-links .container {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .footer-links a {
    font-size: 18px;
  }

  .wsra-title {
    margin-bottom: 24px;
  }

  .wsra-image {
    margin-bottom: 24px;
	  height: 190px;
  }

  .wsra-cards {
    gap: 16px;
  }

  .wsra-row {
    flex-direction: column;
    gap: 16px;
  }

  .wsra-card {
    width: 100%;
    min-width: 100%;
  }

  .certifications-section {
    padding: 40px 0;
  }

  .certifications-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .certifications-grid {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }

  .certification-item {
    width: 100%;
    min-width: 100%;
  }

  .certifications-button {
    font-size: 14px;
    padding: 12px 16px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-header {
    gap: 16px;
    margin-bottom: 32px;
  }

  .testimonials-title {
    font-size: 32px;
    line-height: 40px;
  }

  .testimonials-subtitle {
    font-size: 16px;
  }

  .where-we-work-section {
    padding: 60px 0;
  }

  .where-we-work-header {
    gap: 16px;
  }

  .where-we-work-title {
    font-size: 32px;
    line-height: 40px;
  }

  .where-we-work-subtitle {
    font-size: 18px;
  }

  .where-we-work-left {
    gap: 32px;
  }

  .where-we-work-card {
    padding: 24px;
  }

  .where-we-work-card p {
    font-size: 18px;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-header {
    gap: 16px;
  }

  .contact-title {
    font-size: 32px;
    line-height: 40px;
  }

  .contact-form-title {
    font-size: 18px;
    line-height: 24px;
  }

  .contact-description {
    gap: 16px;
  }

  .contact-description p {
    font-size: 14px;
    line-height: 20px;
  }

  .contact-cta-text {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .contact-left {
    gap: 24px;
  }

  .contact-row {
    flex-direction: column;
    gap: 16px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-field input {
    font-size: 18px;
    padding: 14px 16px;
  }

  .contact-submit {
    font-size: 14px;
    padding: 12px 16px;
  }

  .footer-main {
    padding: 40px 0;
  }

  .footer-logo {
    width: 140px;
    height: auto;
  }

  .footer-infos {
    gap: 24px;
    font-size: 16px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }

  .footer-links {
    padding: 40px 0;
  }

  .footer-links .container {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links a {
    font-size: 16px;
  }
}

/* ==========================================================================
   ABOUT PAGE - Background & Wrapper
   ========================================================================== */

.about-page-wrapper {
  background-image: url('../images/about-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  width: 100%;
}

/* ==========================================================================
   HERO SECTION ABOUT
   ========================================================================== */

.hero-about {
  padding: 100px 0 80px 0;
}

.hero-about .container {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  justify-content: center;
}

/* Header */
.hero-about-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.hero-about-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 80px;
  color: #1e3246;
  text-align: center;
  width: 100%;
  margin: 0;
}

.hero-about-image {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-top: 24px;
}

@media (min-width: 769px) {
  .hero-about-image {
    margin-top: 40px;
  }
}

.hero-about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ==========================================================================
   COLUMNS SECTION - Generic & Reusable
   ========================================================================== */

.columns-section {
  display: flex;
  gap: 48px;
  align-items: stretch;
  width: 100%;
}

.column-left,
.column-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.column-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

/* Column Typography */
.column-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #1e3246;
  margin: 0;
}

.column-title .title-light {
  font-weight: 300;
}

.column-title .title-bold {
  font-weight: 800;
}

.column-text {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

.column-label {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

.column-mission {
  font-family: 'Epilogue', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
  white-space: pre-wrap;
}

/* Column Image */
.column-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Column Image with Shadow - adapta-se verticalmente ao conteúdo de texto */
.column-image-shadow {
  height: 100%;
  align-self: stretch;
}

/* Column Section Title */
.column-section-title {
  font-family: 'Epilogue', sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 56px;
  color: #1e3246;
  margin: 0;
}

/* Column Text Content */
.column-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-text-content p {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1e3246;
  margin: 0;
}

.column-text-content p strong {
  font-weight: 700;
}

/* ==========================================================================
   WHY CLIENTS SECTION
   ========================================================================== */

.why-clients-section {
  padding: 0 0 120px 0;
}

/* ==========================================================================
   CERTIFICATIONS SECTION - ABOUT PAGE
   ========================================================================== */

.certifications-about {
  padding: 0 0 80px 0;
}

.certifications-title-dark {
  color: #1e3246;
}

.certifications-description {
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  color: #1e3246;
  text-align: center;
  max-width: 630px;
  margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS SECTION - LIGHT VERSION (About Page)
   ========================================================================== */

.testimonials-light {
  padding: 0 0 120px 0;
  background: transparent;
}

.testimonials-title-dark {
  color: #1e3246;
}

.testimonials-subtitle-dark {
  color: #1e3246;
}

.testimonial-card-light {
  border-top: 4px solid #28aab4;
  border-left: none;
  background: #ffffff;
  color: #1e3246 !important;
}

.testimonial-card-light:hover {
  background: #e8e8e8;
}

.testimonial-link-dark {
  color: #1e3246;
}

.testimonial-name-dark {
  color: #1e3246;
}

.testimonial-text-dark {
  color: #1e3246;
}

/* ==========================================================================
   TECHNICAL TEAM SECTION
   ========================================================================== */

.technical-team-section {
  padding: 80px 0;
}

.technical-team-section .columns-section {
  align-items: center;
}

/* Imagem com shadow específico */
.column-image-shadow {
  box-shadow: 0px 0px 250px 0px rgba(45, 200, 210, 0.24);
}

/* ==========================================================================
   BUILT ON TRUST SECTION
   ========================================================================== */

.built-trust-section {
  padding: 0 0 80px 0;
}

.built-trust-section .columns-section {
  align-items: center;
}

/* ==========================================================================
   ABOUT PAGE - Media Queries
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-about {
    padding: 80px 0 60px 0;
  }

  .hero-about .container {
    gap: 48px;
  }

  .hero-about-title {
    font-size: 56px;
    line-height: 64px;
  }



  .columns-section {
    flex-direction: column;
    gap: 40px;
  }

  .column-title {
    font-size: 40px;
    line-height: 48px;
  }

  .column-section-title {
    font-size: 40px;
    line-height: 48px;
  }

  .column-image {
    height: 400px;
  }

  .why-clients-section {
    padding: 0 0 80px 0;
  }

  .certifications-about {
    padding: 0 0 60px 0;
  }

  .certifications-description {
    font-size: 18px;
  }

  .technical-team-section {
    padding: 60px 0;
  }

  .built-trust-section {
    padding: 0 0 60px 0;
  }

  .testimonials-light {
    padding: 0 0 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-about {
    padding: 60px 0 40px 0;
  }

  .hero-about .container {
    gap: 40px;
  }

  .hero-about-title {
    font-size: 40px;
    line-height: 48px;
  }



  .columns-section {
    gap: 32px;
  }

  .column-content {
    gap: 24px;
  }

  .column-title {
    font-size: 32px;
    line-height: 40px;
  }

  .column-section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .column-image {
    height: 350px;
  }

  .column-text-content {
    gap: 20px;
  }

  .why-clients-section {
    padding: 0 0 60px 0;
  }

  .certifications-about {
    padding: 0 0 50px 0;
  }

  .certifications-description {
    font-size: 16px;
    max-width: 100%;
  }

  .technical-team-section {
    padding: 50px 0;
  }

  .built-trust-section {
    padding: 0 0 50px 0;
  }

  .testimonials-light {
    padding: 0 0 60px 0;
  }

  .testimonials-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-about {
    padding: 40px 0 30px 0;
  }

  .hero-about .container {
    gap: 32px;
  }

  .hero-about-title {
    font-size: 32px;
    line-height: 40px;
  }



  .columns-section {
    gap: 24px;
	  flex-direction: column-reverse;
  }
	
	.normal {
		flex-direction: column!important;
	}

  .column-content {
    gap: 20px;
  }

  .column-title {
    font-size: 28px;
    line-height: 36px;
  }

  .column-text,
  .column-label,
  .column-mission {
    font-size: 15px;
    line-height: 22px;
  }

  .column-section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .column-image {
    height: 280px;
  }

  .column-text-content {
    gap: 16px;
  }

  .column-text-content p {
    font-size: 15px;
    line-height: 22px;
  }

  .why-clients-section {
    padding: 0 0 40px 0;
  }

  .certifications-about {
    padding: 0 0 40px 0;
  }

  .certifications-description {
    font-size: 15px;
    line-height: 22px;
  }

  .technical-team-section {
    padding: 40px 0;
  }

  .built-trust-section {
    padding: 0 0 40px 0;
  }

  .testimonials-light {
    padding: 0 0 40px 0;
  }
}
