/*
Theme Name: Emu Custom
Theme URI: 
Author: 
Author URI: 
Description: Custom theme for EMU.
Version: 1.0
License: 
License URI: 
Text Domain: emu-custom
*/
@font-face {
  font-family: "TT Hoves Pro Trial Variable";
  src: url("./assets/fonts/TT Hoves Pro Trial Variable.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Sora", sans-serif;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.footer-heading {
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-weight: 300;
}

.section-kicker {
  color: #3A82C4;
  font-size: 15px;
  font-family: "Space Mono", monospace;
  margin-bottom: 7px;
  display: block;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  color: #101b2e;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.1;
  margin-top: 0px;
  margin-bottom: 40px;
}

.btn {
  font-family: "Sora", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: #73bfff;
  color: #101b2e;
  border: none;
}
.btn-primary:hover {
  background-color: rgb(64, 167.6857142857, 255);
  color: #101b2e;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.site-header {
  background-color: #101b2e;
  padding: 16px 0;
}
.site-header .navbar-logo img {
  width: 130px;
}
.site-header .primary-menu-fallback {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header .primary-menu-fallback .menu-item > .dropdown-trigger {
  cursor: pointer;
}
.site-header .primary-menu-fallback .menu-item > a, .site-header .primary-menu-fallback .menu-item > .dropdown-trigger {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  font-weight: 300;
  height: 100%;
}
.site-header .primary-menu-fallback .menu-item > a > img.chev, .site-header .primary-menu-fallback .menu-item > .dropdown-trigger > img.chev {
  width: 8px;
  margin-left: 4px;
}
.site-header .primary-menu-fallback .menu-item > a:hover, .site-header .primary-menu-fallback .menu-item > .dropdown-trigger:hover {
  color: #ffffff;
}
.site-header .primary-menu-fallback .has-children {
  position: relative;
  padding: 10px 0;
}
.site-header .primary-menu-fallback .has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #f4f7f8;
  border-radius: 12px;
  padding: 10px;
  min-width: 190px;
  list-style: none;
  margin: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 100;
}
.site-header .primary-menu-fallback .has-children .sub-menu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: -20px;
  right: -20px;
  height: 50px;
  background: transparent;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item:last-child {
  margin-bottom: 0;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item a {
  color: #2d3748;
  padding: 4px;
  border-radius: 8px;
  font-weight: 400;
  transition: all 0.2s;
  font-size: 13px;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item a img {
  margin-right: 6px;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item a:hover {
  color: #101b2e;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item.current-menu-item a {
  color: #a0aec0;
  pointer-events: none;
}
.site-header .primary-menu-fallback .has-children .sub-menu .menu-item.current-menu-item a img {
  opacity: 0.4;
  filter: grayscale(100%);
}
.site-header .primary-menu-fallback .has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInSimple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeftScroll {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRightScroll {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in-up {
  opacity: 0;
}
.fade-in-up.is-visible {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
}
.fade-in-left.is-visible {
  animation: fadeInLeftScroll 0.8s ease-out forwards;
}

.fade-in-right {
  opacity: 0;
}
.fade-in-right.is-visible {
  animation: fadeInRightScroll 0.8s ease-out forwards;
}

.hero-section {
  position: relative;
  background-color: #101b2e;
}
.hero-section .hero-left {
  padding-top: 4rem;
  padding-bottom: 4rem;
  z-index: 2;
}
.hero-section .hero-left .hero-content {
  opacity: 0;
  animation: fadeSlideLeft 1.4s ease-out forwards;
}
.hero-section .hero-title {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .hero-section .hero-title {
    font-size: 4.2rem;
  }
}
.hero-section .hero-subtitle {
  color: #64748B;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.6;
  margin-bottom: 4rem;
}
.hero-section .hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero-section .hero-actions .btn-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #64748B;
}
.hero-section .hero-actions .btn-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.hero-section .hero-right .hero-image-wrapper {
  height: 100%;
  opacity: 0;
  animation: fadeInSimple 1.2s ease-in-out forwards;
  animation-delay: 0.4s;
}
.hero-section .hero-right .hero-image-wrapper .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .hero-section .hero-left {
    padding-top: 14rem;
    padding-bottom: 6rem;
    padding-right: 85px;
  }
  .hero-section .hero-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50vw;
    padding: 0;
  }
  .hero-section .hero-right .hero-image-wrapper .hero-image {
    border-radius: 0;
  }
}

.servicios-section {
  padding: 8rem 0;
  background-color: #ffffff;
}
.servicios-section .service-card {
  background-color: #f0f6f8;
  border-radius: 10px;
  padding: 36px 32px 44px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.servicios-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.servicios-section .service-card .service-icon {
  margin-bottom: 5px;
}
.servicios-section .service-card .service-icon img {
  display: block;
  width: 40px;
}
.servicios-section .service-card .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #101b2e;
  margin-bottom: 6px;
  margin-top: 10px;
}
.servicios-section .service-card .service-desc {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
}

.quienes-somos-section {
  padding: 6rem 0;
  background-color: #f4f7f8;
  overflow-x: hidden;
}
.quienes-somos-section .section-title {
  font-size: 54px;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-bottom: 2rem !important;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .quienes-somos-section .section-title {
    font-size: 40px;
  }
}
.quienes-somos-section .quienes-somos-desc {
  font-family: "Sora", sans-serif;
  font-size: 18.5px;
  font-weight: 200;
  line-height: 1.7;
  color: #1A2332;
}
.quienes-somos-section .quienes-somos-desc strong {
  font-weight: 400;
}
.quienes-somos-section .quienes-somos-list-title {
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: #1a2332;
  margin-bottom: 1.5rem;
}
.quienes-somos-section .quienes-somos-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quienes-somos-section .quienes-somos-list li {
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #1A2332;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
}
.quienes-somos-section .quienes-somos-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #6cbdff;
}

.clientes-section {
  padding: 6rem 0;
  background-color: #ffffff;
}
.clientes-section .clientes-slider-wrapper {
  margin-top: 3rem;
  overflow: hidden;
}
.clientes-section .clientes-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.clientes-section .clientes-slider .swiper-slide {
  width: auto;
}
.clientes-section .cliente-card {
  background-color: #f4f7f8;
  padding: 15px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 260px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}
.clientes-section .cliente-card:hover {
  transform: scale(1.02);
}
.clientes-section .cliente-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.clientes-section .cliente-card img:hover {
  opacity: 1;
}

.certificados-section {
  padding: 6rem 0;
  background-color: #182b40;
}
.certificados-section .section-title {
  color: #fff;
  max-width: 862px;
  font-size: 36px;
}
.certificados-section .certificado-link {
  text-decoration: none;
  display: block;
  transition: transform 0.3s ease;
}
.certificados-section .certificado-link:hover {
  transform: translateY(-5px);
}
.certificados-section .certificado-link:hover .certificado-card {
  background-color: rgb(18.6322580645, 31.4419354839, 53.5677419355);
}
.certificados-section .certificado-card {
  background-color: #101b2e;
  border-radius: 8px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  transition: background-color 0.3s ease;
}
.certificados-section .certificado-card img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
}
.certificados-section .certificado-label {
  font-family: "Space Mono", monospace;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
  text-align: center;
}

.page-id-615 .certificados-section {
  background-color: #101b2e !important;
}
.page-id-615 .certificados-section .section-title {
  color: #ffffff !important;
  max-width: 862px;
  font-size: 78px;
}
.page-id-615 .certificados-section .certificado-card {
  background-color: #1a2332;
}

.site-footer {
  background-color: #101b2e;
  color: rgba(255, 255, 255, 0.5);
  padding: 5rem 0 2rem;
}
.site-footer .footer-logo img {
  width: 100%;
  max-width: 240px;
}
.site-footer .footer-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.site-footer .footer-actions .btn {
  width: 100%;
  margin: 0;
}
.site-footer .footer-desc {
  font-family: "Sora", sans-serif;
  font-weight: 200;
  font-size: 13px;
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 380px;
  color: #627384;
}
.site-footer .footer-heading {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}
.site-footer .footer-map iframe {
  width: 100%;
  border-radius: 15px;
}
.site-footer .contact-list {
  padding-left: 0;
}
.site-footer .contact-list li {
  font-size: 14px;
  font-family: "Sora", sans-serif;
  margin-bottom: 9px !important;
  padding: 0;
}
.site-footer .contact-list li .icon {
  opacity: 0.7;
  margin-right: 4px;
}
.site-footer .contact-list li a {
  color: #667788;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 200;
}
.site-footer .contact-list li a:hover {
  color: #ffffff;
}
.site-footer .footer-map iframe {
  max-width: 100%;
}
.site-footer .footer-legales {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .footer-legales p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: left;
}

.page-header {
  background-color: #101b2e;
  padding-top: 100px;
  padding-bottom: 65px;
  margin-bottom: 80px;
}
.page-header .page-title {
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-top: 0;
  color: #fff;
  margin-bottom: 0;
}
.page-header .page-title:has(+ .page-subtitle) {
  margin-bottom: 0;
}
.page-header .page-subtitle {
  color: #CACACA;
  font-size: 18px;
  font-weight: 200;
  font-family: "Sora", sans-serif;
  margin-top: 1rem;
  margin-bottom: 0;
}

.historia-section {
  background-color: #ffffff;
}
.historia-section .historia-text p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(16, 27, 46, 0.7);
  margin-bottom: 1.5rem;
}
.historia-section .empresa-historia-slider {
  height: 450px;
}
@media (max-width: 991px) {
  .historia-section .empresa-historia-slider {
    height: 400px;
  }
}

.quienes-somos-slider {
  position: relative;
  border-radius: 14px;
  height: 205px;
  overflow: hidden;
}
.quienes-somos-slider .slide-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .quienes-somos-slider .slide-image {
    height: 100%;
  }
}
.quienes-somos-slider .slider-arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.quienes-somos-slider .slider-arrow:hover {
  background-color: #f0f0f0;
}
.quienes-somos-slider .slider-arrow svg {
  margin-left: 2px;
}

.planta-section {
  background-color: #ffffff;
}
.planta-section .politica-calidad-wrapper {
  border-radius: 12px;
  padding: 3.5rem 3rem !important;
  background-color: #f0f6f8;
}
.planta-section .politica-calidad-wrapper img {
  max-width: 100%;
  height: auto;
}
.planta-section .planta-intro {
  font-family: "Sora", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #101b2e;
  margin-bottom: 40px;
}
.planta-section .planta-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 5px;
}
.planta-section .planta-list li {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  color: #4D4D4D;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.planta-section .planta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 0;
  background-color: rgba(16, 27, 46, 0.6);
}

.fabricacion-section {
  background-color: #fff;
}
.fabricacion-section .contact-box {
  background-color: #182B40;
  border-radius: 16px;
  padding: 65px 30px 60px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.fabricacion-section .contact-box .contact-box-icon {
  margin-bottom: 0;
}
.fabricacion-section .contact-box .contact-box-icon img {
  width: 120px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(50%) saturate(1478%) hue-rotate(185deg) brightness(107%) contrast(106%);
}
.fabricacion-section .contact-box .contact-box-title {
  color: #fff;
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
}
.fabricacion-section .contact-box .contact-box-subtitle {
  color: #CACACA;
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
  margin-bottom: 2rem;
}
.fabricacion-section .contact-box .contact-box-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.fabricacion-section .contact-box .contact-box-buttons .btn {
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.2s ease;
}
.fabricacion-section .contact-box .contact-box-buttons .btn-asesoramiento {
  background-color: #6cbdff;
  border: 1px solid #6cbdff;
  color: #101b2e;
  font-weight: 400;
}
.fabricacion-section .contact-box .contact-box-buttons .btn-asesoramiento:hover {
  background-color: rgb(57, 166.1020408163, 255);
}
.fabricacion-section .contact-box .contact-box-buttons .btn-cotizacion {
  background-color: #213a53;
  border: 1px solid #6cbdff;
  color: #6cbdff;
  font-weight: 400;
}
.fabricacion-section .contact-box .contact-box-buttons .btn-cotizacion:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.fabricacion-section .contact-box .contact-box-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 auto;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
}
.fabricacion-section .contact-box .contact-box-links .contact-link {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
.fabricacion-section .contact-box .contact-box-links .contact-link:hover {
  color: #fff;
}
.fabricacion-section .contact-box .contact-box-links .contact-link img {
  width: 20px;
  opacity: 0.8;
}
.fabricacion-section .fabricacion-slider {
  height: 100%;
  min-height: 450px;
  border-radius: 16px;
}
.fabricacion-section .fabricacion-slider .swiper-slide {
  height: 100%;
}
.fabricacion-section .fabricacion-slider .slider-arrow {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.servicios-detalles-section {
  background-color: #fff;
  padding-top: 25px;
}
.servicios-detalles-section .servicios-text p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(16, 27, 46, 0.7);
}
.servicios-detalles-section .servicios-text .subtitle {
  font-size: 17px;
  color: #101b2e;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.servicios-detalles-section .servicios-text .subtitle strong {
  font-weight: 300;
}
.servicios-detalles-section .fabricacion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 5px;
}
.servicios-detalles-section .fabricacion-list li {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.6;
  color: #1A2332;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.servicios-detalles-section .fabricacion-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #6cbdff;
}
.servicios-detalles-section .fabricacion-slider-2 {
  height: 500px;
  border-radius: 12px;
}
.servicios-detalles-section .fabricacion-slider-2 .swiper-slide {
  height: 100%;
}
.servicios-detalles-section .fabricacion-slider-2 .slider-arrow {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
}

.services-nav-section {
  background-color: #fff;
  padding-bottom: 0;
  margin-bottom: 40px;
}
.services-nav-section .service-nav-card {
  display: block;
  background-color: #f0f6f8;
  border-radius: 12px;
  padding: 2rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-height: 197px;
  box-sizing: border-box;
}
.services-nav-section .service-nav-card .service-nav-icon {
  margin-bottom: 6px;
}
.services-nav-section .service-nav-card .service-nav-icon img {
  width: 40px;
  height: 40px;
  transition: filter 0.3s ease;
  filter: brightness(0) saturate(100%) invert(8%) sepia(21%) saturate(2311%) hue-rotate(185deg) brightness(97%) contrast(92%);
}
.services-nav-section .service-nav-card .service-nav-title {
  color: #101b2e;
  font-family: "TT Hoves Pro Trial Variable", sans-serif;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 0.5rem;
  margin-top: 0;
  transition: color 0.3s ease;
}
.services-nav-section .service-nav-card .service-nav-desc {
  color: #4A5568;
  font-size: 15px;
  font-weight: 200;
  margin-bottom: 0;
  margin-top: 0;
  transition: color 0.3s ease;
  line-height: 1.5;
}
.services-nav-section .service-nav-card:not(.active):hover {
  background-color: rgb(229.5681818182, 239.7409090909, 243.1318181818);
  transform: translateY(-5px);
}
.services-nav-section .service-nav-card.active {
  background-color: #101b2e;
}
.services-nav-section .service-nav-card.active .service-nav-icon img {
  filter: brightness(0) invert(1);
}
.services-nav-section .service-nav-card.active .service-nav-title {
  color: #fff;
}
.services-nav-section .service-nav-card.active .service-nav-desc {
  color: rgba(255, 255, 255, 0.4);
}

.certificaciones-text-section {
  background-color: #101b2e;
}
.certificaciones-text-section .text-light {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
}
.certificaciones-text-section .certificaciones-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.certificaciones-text-section .certificaciones-list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.certificaciones-text-section .certificaciones-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
}

.contacto-section .contacto-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  gap: 10px;
}
.contacto-section .contacto-item .contacto-icon {
  margin-top: 0;
  transform: translateY(5px);
}
.contacto-section .contacto-item .contacto-icon img {
  width: 47px;
  height: 47px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(38%) saturate(2853%) hue-rotate(185deg) brightness(103%) contrast(98%);
}
.contacto-section .contacto-item .contacto-text .contacto-label {
  display: block;
  color: #6cbdff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-family: "Space Mono", monospace;
}
.contacto-section .contacto-item .contacto-text p {
  color: #111A2C;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 0;
  margin-top: 0;
  font-family: "Sora", sans-serif;
}
.contacto-section .contacto-form-box {
  background-color: #f0f6f8;
  border-radius: 12px;
  padding: 3.5rem 3rem;
}
.contacto-section .contacto-form-box .form-title {
  color: #111A2C;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
  font-family: "Sora", sans-serif;
  margin-top: 0;
}
.contacto-section .contacto-form-box .wpcf7 .wpcf7-form-control-wrap {
  display: block;
}
.contacto-section .contacto-form-box .wpcf7 input[type=text],
.contacto-section .contacto-form-box .wpcf7 input[type=email],
.contacto-section .contacto-form-box .wpcf7 textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 0;
  background-color: #fff;
  color: #4a5568;
  font-size: 15px;
  box-sizing: border-box;
}
.contacto-section .contacto-form-box .wpcf7 input[type=text]::placeholder,
.contacto-section .contacto-form-box .wpcf7 input[type=email]::placeholder,
.contacto-section .contacto-form-box .wpcf7 textarea::placeholder {
  color: #a0aec0;
}
.contacto-section .contacto-form-box .wpcf7 input[type=text]:focus,
.contacto-section .contacto-form-box .wpcf7 input[type=email]:focus,
.contacto-section .contacto-form-box .wpcf7 textarea:focus {
  outline: 1px solid #6cbdff;
}
.contacto-section .contacto-form-box .wpcf7 p {
  margin-bottom: 0;
}
.contacto-section .contacto-form-box .wpcf7 textarea {
  min-height: 120px;
  resize: none;
}
.contacto-section .contacto-form-box .wpcf7 .wpcf7-not-valid-tip {
  color: #e53e3e;
  font-size: 13px;
  margin-top: 0.4rem;
  display: block;
  font-weight: 500;
}
.contacto-section .contacto-form-box .wpcf7 .wpcf7-response-output {
  margin: 1.5rem 0 0 0 !important;
  border-radius: 8px;
  padding: 0 !important;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent !important;
}
.contacto-section .contacto-form-box .wpcf7 .wpcf7-response-output.wpcf7-validation-errors, .contacto-section .contacto-form-box .wpcf7 .wpcf7-response-output.wpcf7-spam-blocked, .contacto-section .contacto-form-box .wpcf7 .wpcf7-response-output.wpcf7-aborted {
  background-color: #fef2f2 !important;
  color: #991b1b !important;
  border-color: #fecaca !important;
}
.contacto-section .contacto-form-box .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: #f0fdf4 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}
.contacto-section .contacto-form-box .wpcf7 input[type=submit] {
  background-color: #6cbdff;
  color: #111a2c;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2.5rem;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 30px;
}
.contacto-section .contacto-form-box .wpcf7 input[type=submit]:hover {
  opacity: 0.9;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1050;
  padding: 0 !important;
  position: relative;
}

.hamburger .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger .bar:nth-child(1) {
  top: 0;
}

.hamburger .bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger .bar:nth-child(3) {
  bottom: 0;
}

.hamburger.active .bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

@media (max-width: 991px) {
  .hamburger {
    display: flex !important;
  }
  #navbar-nav {
    position: fixed !important;
    top: 0;
    right: 0 !important;
    transform: translateX(100%);
    left: auto !important;
    width: 100%;
    height: 100vh;
    background-color: #101b2e !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    z-index: 1040;
    margin: 0 !important;
    padding: 40px 20px !important;
    overflow-y: auto;
  }
  #navbar-nav.open {
    opacity: 1;
    transform: translateX(0) !important;
    pointer-events: auto;
  }
  #navbar-nav .primary-menu,
  #navbar-nav .primary-menu-fallback {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none;
    width: 100%;
  }
  #navbar-nav li {
    width: 100%;
    text-align: center;
  }
  #navbar-nav li a,
  #navbar-nav li span.dropdown-trigger {
    color: #ffffff !important;
    font-size: 24px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  #navbar-nav li.has-children {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #navbar-nav .sub-menu {
    position: static !important;
    background-color: transparent !important;
    box-shadow: none !important;
    margin-top: 20px !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none;
    pointer-events: all;
  }
  #navbar-nav .sub-menu li {
    text-align: center;
  }
  #navbar-nav .sub-menu a {
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    width: 100%;
    text-align: center;
  }
  #navbar-nav .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
  }
  #navbar-nav li.current-menu-item > a,
  #navbar-nav li.current-menu-item > span.dropdown-trigger {
    color: #6cbdff !important;
    font-weight: 500 !important;
  }
  #navbar-nav .sub-menu li.current-menu-item > a {
    background-color: rgba(108, 189, 255, 0.1);
    border-radius: 8px;
  }
  #navbar-nav .sub-menu img {
    filter: invert(1);
    margin: 0 !important;
    display: none;
  }
  .mobile-cta-wrapper {
    margin-top: 40px !important;
  }
  .mobile-cta-wrapper .btn {
    font-size: 20px !important;
    padding: 15px 30px !important;
  }
  .hero-section .hero-left {
    padding: 0;
    height: calc(100dvh - 67px);
  }
  .hero-section .hero-left .hero-content {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    padding: 40px 0;
    box-sizing: border-box;
  }
  .servicios-section {
    padding: 3rem 0;
  }
  .certificados-section .section-title {
    font-size: 40px;
  }
  .page-id-615 .certificados-section .section-title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .page-header .page-title {
    font-size: 40px;
  }
  .page-header .page-subtitle {
    font-size: 16px;
    margin-top: 5px;
  }
  .page-header {
    margin-bottom: 40px;
  }
  .hero-section .hero-left .hero-content {
    height: auto;
  }
  .hero-section .hero-left {
    height: auto;
    padding: 0 20px;
  }
  .hero-section .hero-right {
    padding-top: 10px;
    background-color: #fff;
  }
  .site-header {
    padding: 20px 0;
  }
  .hero-section .hero-title {
    margin-bottom: 0;
    font-size: 2.5rem;
  }
  .hero-section .hero-subtitle {
    margin-bottom: 2rem;
  }
  .section-title,
  .quienes-somos-section .section-title {
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */