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

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

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

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

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

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 45px;
  margin-right: 0px;
}

@media(min-width: 768px){

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

}



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

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

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

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

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

  .header .navmenu {
    order: 3;
    
  }
}

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

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


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

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: var(--default-color);
}

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

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

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

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

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

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh; /* Pantalla completa */
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center; /* Centra verticalmente todo el contenido */
}

/* Capa oscura encima del fondo */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Imagen de fondo */
.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Contenedor principal */
.hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
}

/* Fila centrada */
.hero .row {
  display: flex;
  justify-content: center; /* Centra horizontal */
  align-items: center;     /* Centra vertical */
  height: 100%;
}

/* Columna de texto */
.hero .col-lg-6 {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra dentro de la columna */
  text-align: center;
}

/* Título principal */
.hero h2 {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.1;
  white-space: nowrap; /* Mantiene todo en una línea en escritorio */
}

.hero-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.8rem;
  background-color: var(--accent-color, #0d6efd);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color, #0d6efd), #000 15%);
  transform: translateY(-2px);
}

/* Texto cambiante */
#changing-word {
  display: inline-block;
  vertical-align: bottom;
  border-right: 2px solid currentColor;
  white-space: nowrap; /* Evita cortes en la palabra cambiante */
  overflow: hidden;
}

/* Subtítulo */
.hero h3 {
  margin-bottom: 20px;
  padding: 0;
  font-size: clamp(10px, 2vw, 30px);
  font-weight: 700;
}

/* Ajustes responsive para tablet */
@media (max-width: 991.98px) {
  .hero {
    padding: 100px 0 50px 0;
  }
  .hero h2 {
    font-size: clamp(28px, 7vw, 52px);
  }
  .hero h3 {
    font-size: clamp(18px, 5vw, 34px);
  }
}

/* Ajustes responsive para móvil */
@media (max-width: 575.98px) {
  .hero {
    padding: 80px 0 40px 0;
  }
  .hero h2 {
    font-size: clamp(26px, 8vw, 42px);
    margin-bottom: 2rem;
    white-space: normal; /* Permite salto de línea solo en móvil */
  }
  .hero h3 {
    font-size: clamp(16px, 5vw, 28px);
  }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

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

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

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

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

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

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

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

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

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

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

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

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

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

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

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

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

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

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

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

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 12px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

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

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Alt Pricing Section
--------------------------------------------------------------*/
.alt-pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.alt-pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.alt-pricing .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.alt-pricing .pricing-item h4 sup {
  font-size: 28px;
}

.alt-pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.alt-pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.alt-pricing .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.alt-pricing .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.alt-pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na span {
  text-decoration: line-through;
}

.alt-pricing .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

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

.alt-pricing .featured {
  background: var(--accent-color);
}

.alt-pricing .featured h3,
.alt-pricing .featured h4,
.alt-pricing .featured h4 span,
.alt-pricing .featured ul,
.alt-pricing .featured ul .na,
.alt-pricing .featured ul i,
.alt-pricing .featured ul .na i {
  color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/* === Services: Premium corporativo + SaaS === */
.service-card.premium-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}

/* barra superior tipo corporativo */
.service-card.premium-card::before{
  content:"";
  position:absolute;
  top:0; left:0;
  width:100%; height:4px;
  background: linear-gradient(90deg, rgba(255,204,0,1), rgba(220,0,0,1));
  opacity:.95;
}

/* hover estilo premium */
.service-card.premium-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 46px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.10);
}

.service-card__top{
  display:flex;
  gap:14px;
  align-items:flex-start;
  margin-bottom: 12px;
}

.service-icon{
  width:46px; height:46px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(13,110,253,.08); /* acento SaaS */
  border: 1px solid rgba(13,110,253,.12);
  flex: 0 0 46px;
}

.service-icon i{
  font-size: 22px;
  line-height: 1;
}

.service-head h3{
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.service-head .tagline{
  margin:0;
  font-size: .95rem;
  opacity: .78;
}

.service-desc{
  margin: 10px 0 14px;
  opacity: .9;
}

.service-list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 8px;
}

.service-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-weight: 500;
}

.service-list i{
  margin-top: 2px;
  font-size: 18px;
}

.service-meta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  padding-top: 12px;
  border-top: 1px dashed rgba(0,0,0,.10);
  font-size: .92rem;
  opacity: .9;
}

.service-meta span{
  display:flex;
  align-items:center;
  gap:8px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.06);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Banda SaaS inferior */
.saas-band{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.saas-band__item{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 14px 16px;
  background: #0b1220; /* look SaaS */
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.saas-band__item i{
  font-size: 22px;
  opacity: .95;
}

.saas-band__item strong{
  display:block;
  font-weight: 700;
  line-height: 1.2;
}

.saas-band__item span{
  display:block;
  opacity: .78;
  font-size: .92rem;
}

.saas-band__item:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

/* Responsive */
@media (max-width: 992px){
  .saas-band{
    grid-template-columns: 1fr;
  }
}

/* === Fotos en cards sin romper el diseño === */
.service-media{
  position: relative;
  height: 200px;              /* MISMA altura para todas */
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  background: #0b1220;        /* fallback si no carga img */
}

.service-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* clave para que no se deformen */
  transform: scale(1.02);
  transition: transform .45s ease;
  display: block;
}

.service-media__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.08) 0%,
    rgba(0,0,0,.55) 100%
  );
}

/* hover premium */
.premium-card:hover .service-media img{
  transform: scale(1.08);
}

/* Ajuste de padding para que no quede pegado */
.service-card__top{
  margin-top: 18px;
}


/* ====== Helpers ====== */
.checklist{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.checklist li{ display:flex; gap:10px; align-items:flex-start; font-weight:500; }
.checklist i{ font-size:18px; margin-top:2px; }
.badge-pill{ display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:999px; background:rgba(0,0,0,.04); border:1px solid rgba(0,0,0,.07); font-weight:600; }
.badge-pill i{ font-size:16px; }

.media-card{ position:relative; border-radius:18px; overflow:hidden; box-shadow:0 18px 44px rgba(0,0,0,.10); }
.media-card img{ width:100%; height:380px; object-fit:cover; display:block; }
.media-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%); }
.media-caption{ position:absolute; left:18px; right:18px; bottom:18px; color:#fff; }
.media-caption h4{ margin:0 0 6px; font-weight:800; }
.media-caption p{ margin:0; opacity:.9; }

/* ====== Tech ====== */
.tech-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.tech-card h3{ font-weight:800; margin-bottom:10px; }
.tech-badges{ margin-top:14px; display:flex; flex-wrap:wrap; gap:10px; }

/* ====== Industries mosaic ====== */
.industry-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.industry-card:hover{ transform:translateY(-8px); box-shadow:0 22px 58px rgba(0,0,0,.12); border-color:rgba(0,0,0,.10); }
.industry-media{ position:relative; height:160px; overflow:hidden; }
.industry-media img{ width:100%; height:100%; object-fit:cover; transition:transform .45s ease; display:block; }
.industry-card:hover .industry-media img{ transform:scale(1.08); }
.industry-overlay{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.45) 100%); }
.industry-body{ padding:18px; }
.industry-icon{
  width:44px; height:44px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(13,110,253,.10);
  border:1px solid rgba(13,110,253,.15);
  margin-bottom:10px;
}
.industry-icon i{ font-size:20px; }
.industry-body h3{ font-weight:800; font-size:1.05rem; margin:0 0 6px; }
.industry-body p{ margin:0; opacity:.85; }

/* ====== Why Us ====== */
.why-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.checklist.two-col{ grid-template-columns:repeat(2, minmax(0,1fr)); }
.stats-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.stat{
  background:#0b1220;
  color:#fff;
  border-radius:16px;
  padding:14px 14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 38px rgba(0,0,0,.12);
}
.stat strong{ display:block; font-size:1.4rem; font-weight:900; }
.stat span{ opacity:.82; font-size:.92rem; }

.testi-stack{
  display:grid;
  gap:12px;
}
.testi{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.testi p{ margin:0 0 12px; font-weight:600; }
.testi-footer{ display:flex; gap:10px; align-items:center; }
.avatar{
  width:38px; height:38px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(220,0,0,.12);
  border:1px solid rgba(220,0,0,.20);
  font-weight:900;
}
.testi-footer strong{ display:block; }
.testi-footer span{ display:block; font-size:.92rem; opacity:.75; }

/* ====== Fulfillment ====== */
.ful-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:22px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.timeline-wrap{ margin-top:26px; }
.timeline-title{ font-weight:900; margin-bottom:14px; }
.timeline{ display:grid; gap:14px; }
.step{
  display:grid;
  grid-template-columns:46px 1fr;
  gap:14px;
  align-items:start;
}
.step-num{
  width:46px; height:46px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(90deg, rgba(255,204,0,1), rgba(220,0,0,1));
  color:#0b1220;
  font-weight:900;
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}
.step-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 14px 34px rgba(0,0,0,.06);
}
.step-head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.step-head h4{ margin:0; font-weight:900; }
.step-hint{ font-size:.92rem; opacity:.75; display:inline-flex; align-items:center; gap:8px; }

.benefits{ margin-top:22px; }
.benefits-grid{
  margin-top:10px;
  grid-template-columns:repeat(3, minmax(0,1fr));
}

/* Responsive */
@media (max-width: 992px){
  .checklist.two-col{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr; }
  .media-card img{ height:280px; }
  .benefits-grid{ grid-template-columns:1fr; }
}

.media-title{
  color: #fff !important;
}
/* ===== MOSAICO INDUSTRIAS ===== */
.industries-mosaic{
  display:grid;
  gap: 22px;

  /* Se adapta solo: 260px mínimo por card */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
}

/* Si quieres que "Farmacéutica" se vea como mosaico pro (más ancha) */
.industries-mosaic .featured-wide{
  grid-column: span 2;
}

/* Responsive: en móvil ya no se expande */
@media (max-width: 992px){
  .industries-mosaic .featured-wide{
    grid-column: auto;
  }
}

/* Asegura alturas parejas */
.industry-card{
  height: 100%;
  display:flex;
  flex-direction: column;
}

.industry-media{
  height: 170px; /* uniforme */
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}


/* ===== Dashboard / Why Us Charts ===== */
.why-us-dashboard { background: #f7f9fc; }

.kpi-card2{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  height:100%;
}

.kpi-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  margin-bottom:12px;
}

.kpi-value{ font-size:22px; font-weight:900; line-height:1; }
.kpi-label{ font-weight:600; opacity:.75; margin-top:6px; }

.kpi-icon{
  width:44px; height:44px;
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:18px;
  border:1px solid rgba(0,0,0,.06);
}

.bg-soft-primary{ background: rgba(13,110,253,.12); color:#0d6efd; }
.bg-soft-success{ background: rgba(25,135,84,.12); color:#198754; }
.bg-soft-info{ background: rgba(13,202,240,.12); color:#0dcaf0; }
.bg-soft-danger{ background: rgba(220,53,69,.12); color:#dc3545; }

.kpi-foot{ display:grid; gap:10px; }
.kpi-badge{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:12px;
  padding:6px 10px; border-radius:999px;
  width:fit-content;
}
.kpi-badge.up{ background: rgba(25,135,84,.10); color:#198754; border:1px solid rgba(25,135,84,.18); }
.kpi-badge.down{ background: rgba(220,53,69,.10); color:#dc3545; border:1px solid rgba(220,53,69,.18); }

.kpi-bar{
  height:10px; border-radius:999px;
  background: rgba(0,0,0,.06);
  overflow:hidden;
}
.kpi-bar span{
  display:block; height:100%;
  border-radius:999px;
  background: rgba(13,110,253,.85);
}

.chart-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
  overflow:hidden;
}

.chart-head{
  padding:16px 16px 10px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.chart-head h3{ margin:0; font-weight:900; font-size:16px; }
.chart-head p{ margin:4px 0 0; opacity:.7; font-weight:600; }

.chart-body{ padding:14px 16px 16px; }

.donut-legend{
  margin-top:10px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  font-weight:700;
}
.donut-legend strong{ margin-left:6px; }
.dot{ width:10px; height:10px; border-radius:50%; display:inline-block; margin-right:8px; }
.dot-green{ background:#22c55e; }
.dot-blue{ background:#3b82f6; }
.dot-yellow{ background:#fbbf24; }
.dot-red{ background:#ef4444; }

@media (max-width: 992px){
  .donut-legend{ grid-template-columns:1fr; }
}

.benefits-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  padding:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.benefit-item{
  font-weight:600;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(0,0,0,.03);
}

.benefit-item i{
  color:#22c55e;
  font-size:16px;
}

/* =========================
   BENEFICIOS MODERNOS
========================= */

.benefits-modern{
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefit-card-modern{
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: all .3s ease;
  border: 1px solid rgba(0,0,0,0.04);
}

.benefit-card-modern:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.benefit-icon{
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: #fff;
  font-size: 22px;
  margin-bottom: 18px;
}

.benefit-card-modern h4{
  font-weight: 600;
  margin-bottom: 12px;
}

.benefit-card-modern p{
  color: #64748b;
  font-size: 0.95rem;
}

/* ICONO MÁS GRANDE Y CENTRADO */

.benefit-card-modern{
  text-align: center;
}

.benefit-icon{
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto; /* centra horizontalmente */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: #fff;
  font-size: 34px; /* icono más grande */
  box-shadow: 0 15px 30px rgba(13,110,253,0.25);
  transition: all .3s ease;
}

.benefit-card-modern:hover .benefit-icon{
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(13,110,253,0.35);
}



/* =========================
   HERO LOGISTICA
========================= */
.hero-logistica {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  min-height: 88vh;
  background: linear-gradient(90deg, #09152f 0%, #0a1d47 55%, #081630 100%);
  display: flex;
  align-items: center;
}

.hero-logistica .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 1;
}

.hero-logistica .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 28, 0.88) 0%, rgba(8, 21, 52, 0.72) 45%, rgba(7, 18, 44, 0.55) 100%);
  z-index: 2;
}

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

.hero-content {
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #19d39a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 0.95;
  font-weight: 800;
  margin-bottom: 22px;
  color: #ffffff;
}

.hero-content h1 span {
  color: #19d39a;
}

.hero-content p {
  max-width: 560px;
  font-size: 1.28rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
}

.hero-content p strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-hero {
  background: #17c78f;
  color: #fff;
  box-shadow: 0 8px 24px rgba(23, 199, 143, 0.25);
}

.btn-primary-hero:hover {
  background: #13b581;
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary-hero {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateY(-2px);
}

.hero-sectores {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 10px;
}

.hero-sectores span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-sectores i {
  color: #19d39a;
}

/* =========================
   LADO DERECHO
========================= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero-image-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.floating-card small {
  display: block;
  font-size: 0.82rem;
  color: #6b7280;
  margin-bottom: 2px;
}

.floating-card strong {
  display: block;
  color: #1f2937;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.2;
}

.top-card {
  top: 14px;
  right: 10px;
}

.bottom-card {
  bottom: -18px;
  left: 40px;
}

.icon-box {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: #eef4ff;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.icon-box.success {
  background: #e8fbf4;
  color: #0f9f6e;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 3.2rem;
  }

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

@media (max-width: 991px) {
  .hero-logistica {
    padding: 70px 0 50px;
    min-height: auto;
  }

  .hero-content {
    text-align: center;
  }

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

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

  .hero-visual {
    min-height: auto;
    margin-top: 10px;
  }

  .top-card {
    top: 10px;
    right: 0;
  }

  .bottom-card {
    left: 20px;
    bottom: -18px;
  }
}

@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.02;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
  }

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

  .floating-card {
    min-width: auto;
    width: 85%;
    padding: 12px 14px;
  }

  .top-card {
    top: -8px;
    right: 10px;
  }

  .bottom-card {
    left: 10px;
    bottom: -18px;
  }

  .hero-sectores {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }
}


/* =========================
   HEADER LOGISTICA
========================= */
.header-logistica {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.header-logistica .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
}

.header-logistica .logo img {
  max-height: 62px;
  width: auto;
  display: block;
}

/* NAV */
.header-logistica .navmenu {
  margin-left: auto;
  margin-right: auto;
}

.header-logistica .navmenu ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-logistica .navmenu ul li {
  list-style: none;
}

.header-logistica .navmenu ul li a {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 6px 0;
}

.header-logistica .navmenu ul li a:hover,
.header-logistica .navmenu ul li a.active {
  color: #0f2f86;
}

.header-logistica .navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #16c79a;
  transition: width 0.3s ease;
}

.header-logistica .navmenu ul li a:hover::after,
.header-logistica .navmenu ul li a.active::after {
  width: 100%;
}

/* BOTON */
.btn-header-cotizar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f4aa8;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(31, 74, 168, 0.24);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-header-cotizar:hover {
  background: #173b87;
  color: #fff;
  transform: translateY(-2px);
}

/* MOBILE TOGGLE */
.header-logistica .mobile-nav-toggle {
  font-size: 30px;
  color: #1f2937;
  cursor: pointer;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .header-logistica .header-wrapper {
    min-height: 60px;
  }

  .header-logistica .logo img {
    max-height: 54px;
  }

  .header-logistica .navmenu ul {
    gap: 22px;
  }

  .btn-header-cotizar {
    padding: 12px 18px;
    font-size: 13px;
  }
}

@media (max-width: 991px) {
  .header-logistica {
    padding: 10px 0;
  }

  .header-logistica .header-wrapper {
    gap: 14px;
  }

  .header-logistica .navmenu {
    margin-left: 0;
    margin-right: 0;
  }

  .btn-header-cotizar {
    display: none;
  }
}

.header-logistica .logo img {
  max-height: 54px;
  width: auto;
}

/* =========================
   ESTILO GENERAL SECCIONES
========================= */
.apl-info-section,
.apl-services-section,
.apl-sectors-section {
  padding: 90px 0;
}

.apl-info-section,
.apl-sectors-section {
  background: #f8fafc;
}

.apl-services-section {
  background: #e9eef9;
}

.section-title-apl {
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-title-apl h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1f2a44;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-title-apl h2 span {
  color: #2c4aa5;
}

.section-title-apl p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #60708f;
  margin: 0 auto;
  max-width: 700px;
}

/* =========================
   ICONOS
========================= */
.apl-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.icon-blue {
  background: #2d4aa5;
}

.icon-green {
  background: #20c997;
}

.icon-orange {
  background: #f4a30a;
}

.icon-cyan {
  background: #25b7d3;
}

.icon-purple {
  background: #8b5cf6;
}

.icon-blue-dark {
  background: #274197;
}

/* =========================
   WHY CHOOSE US CARDS
========================= */
.apl-feature-card {
  background: #f3f6fb;
  border: 1px solid #cfd9ea;
  border-radius: 16px;
  padding: 22px 22px 20px;
  min-height: 245px;
  box-shadow: 0 8px 20px rgba(21, 35, 72, 0.08);
  transition: all 0.3s ease;
}

.apl-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(21, 35, 72, 0.12);
}

.apl-feature-card .apl-icon-box {
  margin-bottom: 18px;
}

.apl-feature-card h4 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1f2a44;
  margin-bottom: 12px;
}

.apl-feature-card p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #60708f;
  margin: 0;
}

/* =========================
   SERVICES CARDS
========================= */
.apl-service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(27, 39, 84, 0.10);
  transition: all 0.3s ease;
  height: 100%;
}

.apl-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(27, 39, 84, 0.14);
}

.apl-service-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.apl-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.apl-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}

.badge-green {
  background: #18c48f;
}

.badge-blue {
  background: #2d4aa5;
}

.badge-cyan {
  background: #25b7d3;
}

.apl-service-content {
  padding: 22px 22px 24px;
}

.apl-service-content h4 {
  font-size: 1.65rem;
  font-weight: 800;
  color: #1f2a44;
  margin-bottom: 12px;
}

.apl-service-content p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #60708f;
  margin: 0;
}

.apl-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2d4aa5;
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(45, 74, 165, 0.25);
  transition: all 0.3s ease;
}

.apl-main-btn:hover {
  background: #223b87;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   SECTORES
========================= */
.apl-sector-card {
  background: #f3f6fb;
  border-radius: 14px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(20, 32, 70, 0.06);
  border: 1px solid #e3eaf5;
  min-height: 145px;
  transition: all 0.3s ease;
}

.apl-sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 28px rgba(20, 32, 70, 0.10);
}

.apl-sector-card h4 {
  font-size: 1.45rem;
  font-weight: 800;
  color: #1f2a44;
  margin-bottom: 8px;
}

.apl-sector-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #60708f;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .section-title-apl h2 {
    font-size: 2.5rem;
  }

  .apl-feature-card h4,
  .apl-service-content h4,
  .apl-sector-card h4 {
    font-size: 1.35rem;
  }
}

@media (max-width: 991px) {
  .apl-info-section,
  .apl-services-section,
  .apl-sectors-section {
    padding: 75px 0;
  }

  .section-title-apl {
    margin-bottom: 40px;
  }

  .section-title-apl h2 {
    font-size: 2.1rem;
  }

  .section-title-apl p {
    font-size: 1rem;
  }

  .apl-feature-card,
  .apl-sector-card {
    min-height: auto;
  }

  .apl-service-image {
    height: 210px;
  }
}

@media (max-width: 767px) {
  .apl-info-section,
  .apl-services-section,
  .apl-sectors-section {
    padding: 60px 0;
  }

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

  .apl-feature-card,
  .apl-service-content,
  .apl-sector-card {
    padding: 18px;
  }

  .apl-service-image {
    height: 200px;
  }

  .apl-main-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   STATS SECTION
========================= */
.apl-stats-section {
  background: linear-gradient(180deg, #071632 0%, #041128 100%);
  padding: 85px 0 55px;
}

.apl-section-head {
  max-width: 760px;
  margin: 0 auto 48px;
}

.apl-section-head h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 14px;
}

.apl-section-head h2 span {
  color: #16d39a;
}

.apl-section-head p {
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 auto;
  max-width: 700px;
}

.apl-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 34px 20px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: all 0.3s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apl-stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.apl-stat-card h3 {
  font-size: 3.3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}

.apl-stat-card p {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.stat-green {
  color: #16d39a;
}

.stat-cyan {
  color: #1ec8f3;
}

.stat-orange {
  color: #ffae1a;
}

/* =========================
   CTA SECTION
========================= */
.apl-cta-section {
  background: linear-gradient(180deg, #2e59d9 0%, #264dbf 100%);
  padding: 70px 0 85px;
}

.apl-cta-box {
  max-width: 840px;
  margin: 0 auto;
}

.apl-cta-box h2 {
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.apl-cta-box p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.16rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.apl-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.apl-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 250px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.apl-cta-btn-light {
  background: #ffffff;
  color: #26439c;
  box-shadow: 0 10px 20px rgba(8, 20, 56, 0.15);
}

.apl-cta-btn-light:hover {
  background: #f3f6ff;
  color: #1f377f;
  transform: translateY(-2px);
}

.apl-cta-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}

.apl-cta-btn-outline:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  transform: translateY(-2px);
}

.apl-cta-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.apl-cta-mail a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.apl-cta-mail a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1199px) {
  .apl-section-head h2,
  .apl-cta-box h2 {
    font-size: 2.6rem;
  }

  .apl-stat-card h3 {
    font-size: 2.8rem;
  }
}

@media (max-width: 991px) {
  .apl-stats-section {
    padding: 70px 0 45px;
  }

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

  .apl-section-head {
    margin-bottom: 36px;
  }

  .apl-section-head h2,
  .apl-cta-box h2 {
    font-size: 2.2rem;
  }

  .apl-section-head p,
  .apl-cta-box p {
    font-size: 1rem;
  }

  .apl-stat-card {
    min-height: 135px;
    padding: 28px 18px;
  }
}

@media (max-width: 767px) {
  .apl-stats-section,
  .apl-cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .apl-section-head h2,
  .apl-cta-box h2 {
    font-size: 1.8rem;
  }

  .apl-stat-card h3 {
    font-size: 2.3rem;
  }

  .apl-cta-btn {
    width: 100%;
    min-width: auto;
  }

  .apl-cta-mail {
    font-size: 0.86rem;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================
   HEADER LOGISTICA PRO
========================= */
.header-logistica {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  z-index: 9999;
}

/* CONTENEDOR */
.header-logistica .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
}

/* LOGO */
.header-logistica .logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.header-logistica .logo img {
  max-height: 110px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* NAV */
.header-logistica .navmenu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
}

.header-logistica .navmenu ul {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-logistica .navmenu ul li a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}

/* HOVER */
.header-logistica .navmenu ul li a:hover,
.header-logistica .navmenu ul li a.active {
  color: #2349a6;
}

.header-logistica .navmenu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #16c79a;
  transition: width 0.3s ease;
}

.header-logistica .navmenu ul li a:hover::after,
.header-logistica .navmenu ul li a.active::after {
  width: 100%;
}

/* BOTON */
.btn-header-cotizar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2349a6;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(35, 73, 166, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
  margin-left: 24px;
}

.btn-header-cotizar:hover {
  background: #1a3c8d;
  transform: translateY(-2px);
  color: #fff;
}

/* TOGGLE */
.header-logistica .mobile-nav-toggle {
  display: none;
  font-size: 24px;
  color: #1f2937;
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 10001;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1199px) {
  .header-logistica {
    padding: 6px 0;
  }

  .header-logistica .header-wrapper {
    min-height: 52px;
  }

  .header-logistica .logo img {
    max-height: 90px;
  }

  .header-logistica .mobile-nav-toggle {
    display: block;
  }

  .header-logistica .navmenu ul {
    display: none !important;
  }

  body.mobile-nav-active .header-logistica .navmenu ul {
    display: flex !important;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 60px;
    right: 12px;
    width: 240px;
    padding: 14px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(15, 23, 42, 0.08);
    z-index: 10000;
  }

  .header-logistica .navmenu ul li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
  }

  .header-logistica .navmenu ul li a:hover {
    background: #f4f7fc;
  }

  .header-logistica .navmenu ul li a::after {
    display: none;
  }

  .btn-header-cotizar {
    display: none;
  }
}

/* =========================
   CELULAR
========================= */
@media (max-width: 767px) {
  .header-logistica {
    padding: 5px 0;
  }

  .header-logistica .header-wrapper {
    min-height: 48px;
  }

  .header-logistica .logo img {
    max-height: 48px;
  }

  .header-logistica .mobile-nav-toggle {
    font-size: 22px;
  }

  body.mobile-nav-active .header-logistica .navmenu ul {
    top: 56px;
    width: 220px;
  }

  .header-logistica .navmenu ul li a {
    font-size: 13px;
  }
}

/* =========================
   ESPACIO PARA HEADER FIJO
========================= */
body {
  padding-top: 70px;
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }
}


/* =========================
   WHY CHOOSE US CARDS
========================= */
.apl-info-section .row {
  align-items: stretch;
}

.apl-info-section .col-lg-3,
.apl-info-section .col-md-6 {
  display: flex;
}

.apl-feature-card {
  background: #f3f6fb;
  border: 1px solid #cfd9ea;
  border-radius: 16px;
  padding: 28px 24px 24px;
  width: 100%;
  min-height: 400px; /* altura uniforme */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-shadow: 0 8px 20px rgba(21, 35, 72, 0.08);
  transition: all 0.3s ease;
}

.apl-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(21, 35, 72, 0.12);
}

.apl-feature-card .apl-icon-box {
  margin-bottom: 22px;
}

.apl-feature-card h4 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.3;
  color: #1f2a44;
  margin-bottom: 14px;
}

.apl-feature-card p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #60708f;
  margin: 0;
  flex-grow: 1; /* hace que todas crezcan igual */
}

@media (max-width: 1199px) {
  .apl-feature-card {
    min-height: 330px;
  }

  .apl-feature-card h4 {
    font-size: 1.45rem;
  }
}

@media (max-width: 991px) {
  .apl-feature-card {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .apl-feature-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .apl-feature-card h4 {
    font-size: 1.3rem;
  }

  .apl-feature-card p {
    font-size: 1rem;
  }
}


/* =========================
   SECTORES
========================= */
.apl-sectors-section {
  padding: 90px 0;
  background: #f8fafc;
}

.apl-sector-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #dfe7f3;
  border-radius: 18px;
  padding: 22px 22px 20px;
  min-height: 145px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
}

.apl-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.08);
}

.apl-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.apl-sector-content h4 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  color: #1d2b4f;
}

.apl-sector-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5f7194;
}

/* Colores */
.icon-blue {
  background: #3352b8;
}

.icon-orange {
  background: #f2a300;
}

.icon-green {
  background: #28c59d;
}

.icon-cyan {
  background: #32b9d6;
}

/* Mejor acomodo de la última tarjeta */
#sectores-apl .row {
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 991.98px) {
  .apl-sector-card {
    min-height: auto;
  }
}

@media (max-width: 575.98px) {
  .apl-sector-card {
    padding: 18px;
    gap: 14px;
    border-radius: 16px;
  }

  .apl-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 1rem;
  }

  .apl-sector-content h4 {
    font-size: 1rem;
  }

  .apl-sector-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }
}


.apl-capacidad-section {
  position: relative;
  padding: 100px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 38%, rgba(18, 230, 190, 0.18), transparent 18%),
    radial-gradient(circle at 92% 80%, rgba(18, 230, 190, 0.10), transparent 22%),
    linear-gradient(180deg, #06112d 0%, #071434 45%, #081735 100%);
}

.apl-capacidad-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0));
  opacity: 0.7;
}

.apl-capacidad-container {
  width: min(1280px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.apl-capacidad-header {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto 70px;
}

.apl-capacidad-kicker {
  display: inline-block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #14e3c0;
  margin-bottom: 22px;
}

.apl-capacidad-header h2 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
}

.apl-capacidad-header h2 span {
  color: #14e3c0;
}

.apl-capacidad-header p {
  margin: 0 auto;
  max-width: 1120px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.8;
  color: rgba(210, 221, 240, 0.78);
  font-weight: 500;
}

.apl-capacidad-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: start;
  gap: 10px;
  margin: 0 auto 70px;
  max-width: 1180px;
}

.apl-line {
  position: absolute;
  top: 40px;
  left: 9%;
  right: 9%;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(77, 106, 153, 0.35) 0%, #19d9c3 100%);
  z-index: 1;
}

.apl-step-group {
  position: relative;
  z-index: 2;
  text-align: center;
}

.apl-step {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  border: 4px solid rgba(110, 149, 255, 0.25);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.apl-step-group span {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 800;
  color: #89a3d6;
}

.apl-step-muted {
  background: rgba(116, 138, 176, 0.16);
  color: rgba(186, 200, 226, 0.55);
  border-color: rgba(102, 129, 176, 0.22);
}

.apl-step-active {
  background: linear-gradient(180deg, #3158db 0%, #2448be 100%);
  color: #ffffff;
  border-color: #4f8dff;
  box-shadow:
    0 0 0 4px rgba(79, 141, 255, 0.10),
    0 10px 28px rgba(36, 72, 190, 0.28);
}

.apl-step-highlight {
  background: linear-gradient(180deg, #1ae5c4 0%, #14d6b8 100%);
  color: #06112d;
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 8px rgba(20, 227, 192, 0.10),
    0 0 40px rgba(20, 227, 192, 0.34);
}

.apl-step-group-final span {
  color: #14e3c0;
  font-size: 1.1rem;
}

.apl-capacidad-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.apl-cap-card {
  position: relative;
  background: rgba(118, 136, 173, 0.14);
  border: 1px solid rgba(120, 154, 210, 0.20);
  border-radius: 26px;
  padding: 34px 30px 36px;
  min-height: 455px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.03),
    0 10px 30px rgba(2, 8, 25, 0.28);
  backdrop-filter: blur(3px);
}

.apl-cap-card h3 {
  margin: 0 0 6px;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(139, 160, 201, 0.40);
}

.apl-cap-card h4 {
  margin: 0 0 18px;
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(164, 183, 219, 0.46);
  letter-spacing: 0.5px;
}

.apl-card-divider {
  width: 100%;
  height: 2px;
  background: rgba(153, 177, 222, 0.16);
  margin-bottom: 22px;
}

.apl-cap-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(196, 209, 231, 0.58);
  font-weight: 500;
}

.apl-cap-card-featured {
  background: rgba(40, 80, 155, 0.45);
  border: 2px solid #10ddbb;
  box-shadow:
    0 0 0 1px rgba(16, 221, 187, 0.15),
    0 0 30px rgba(16, 221, 187, 0.22),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.apl-cap-card-featured h3 {
  color: #13e1bf;
}

.apl-cap-card-featured h4 {
  color: #8fd9ff;
}

.apl-cap-card-featured p {
  color: rgba(230, 241, 255, 0.82);
}

.apl-tech-badge {
  position: absolute;
  top: -18px;
  left: -2px;
  background: linear-gradient(90deg, #16e0be 0%, #29d89f 100%);
  color: #081735;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(20, 227, 192, 0.30);
}

/* Responsive */
@media (max-width: 1199px) {
  .apl-capacidad-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .apl-cap-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .apl-capacidad-section {
    padding: 80px 0 70px;
  }

  .apl-capacidad-header {
    margin-bottom: 50px;
  }

  .apl-capacidad-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 50px;
  }

  .apl-line {
    left: 6%;
    right: 6%;
  }

  .apl-step {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }

  .apl-step-group span {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .apl-capacidad-timeline {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 320px;
  }

  .apl-line {
    display: none;
  }

  .apl-capacidad-cards {
    grid-template-columns: 1fr;
  }

  .apl-cap-card-featured {
    grid-column: auto;
  }

  .apl-cap-card {
    min-height: auto;
  }

  .apl-capacidad-header p {
    line-height: 1.65;
  }
}

.apl-sectors-section {
  padding: 70px 0;
  background: #f5f7fb;
}

.apl-sectors-section .section-title-apl {
  margin-bottom: 35px;
}

.apl-sectors-section .section-title-apl h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #172554;
  margin-bottom: 0;
}

.apl-sectors-section .section-title-apl h2 span {
  color: #3157c8;
}

.apl-sector-card.solo-titulo {
  background: #fff;
  border: 1px solid #dbe3f1;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 18px rgba(19, 40, 90, 0.05);
  min-height: auto !important;
  height: auto !important;
}

.apl-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apl-icon-box i {
  color: #fff;
  font-size: 1.1rem;
}

.icon-blue { background: #3157c8; }
.icon-orange { background: #f4a300; }
.icon-green { background: #34c39f; }
.icon-cyan { background: #3bb6d8; }

.apl-sector-content h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f2a5f;
  line-height: 1.2;
}

.apl-sectors-section .row > div {
  display: flex;
}

.apl-sectors-section .row > div .apl-sector-card {
  width: 100%;
}

@media (max-width: 768px) {
  .apl-sectors-section .section-title-apl h2 {
    font-size: 2.2rem;
  }

  .apl-sector-card.solo-titulo {
    padding: 16px 18px;
  }

  .apl-sector-content h4 {
    font-size: 1.05rem;
  }
}

.apl-sector-card.solo-titulo {
  background: #fff;
  border: 1px solid #dbe3f1;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center; /* centra horizontalmente */
  gap: 14px;
  box-shadow: 0 6px 18px rgba(19, 40, 90, 0.05);
  min-height: auto !important;
  height: auto !important;
  text-align: center;
}

.apl-sector-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.apl-sector-content h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f2a5f;
  line-height: 1.2;
  text-align: center;
}

.hero-title-custom {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title-custom .title-line {
  display: block;
}

.hero-title-custom .title-main {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -1.2px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}

.hero-title-custom .title-sub {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  color: #f3f6fb;
  max-width: 560px;
  margin-top: 2px;
}

.hero-title-custom .title-accent {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  color: #11d38b;
  max-width: 560px;
}

.hero-title-custom .hero-separator {
  display: block;
  width: 280px;
  height: 3px;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.15) 100%);
  border-radius: 999px;
  margin: 18px 0 18px 0;
}

.hero-logistica .hero-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 620px;
  margin-bottom: 28px;
}

.hero-visual-custom {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.hero-image-small {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.centered-track-box {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 4;
}

.tracking-box-inner {
  background: rgba(255, 255, 255, 0.96);
  color: #1b1b1b;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  border-top: 4px solid #f5b300;
  min-width: 270px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.tracking-box-inner small {
  display: block;
  font-size: 0.82rem;
  color: #6c757d;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.tracking-box-inner strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  color: #202020;
  letter-spacing: -0.3px;
}

.centered-track-box:hover .tracking-box-inner {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.22);
}

.hero-logistica .floating-card.bottom-card {
  bottom: 24px;
  right: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #11d38b;
  font-size: 1rem;
}

.hero-badge span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

@media (max-width: 991px) {
  .hero-logistica {
    padding: 90px 0 70px;
  }

  .hero-logistica .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-logistica .row {
    row-gap: 40px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-badge {
    margin: 0 auto 20px;
  }

  .hero-title-custom {
    align-items: center;
    margin-bottom: 20px;
  }

  .hero-title-custom .title-main {
    font-size: 2.7rem;
    line-height: 1;
    letter-spacing: -1px;
    text-align: center;
  }

  .hero-title-custom .title-sub {
    font-size: 1.12rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-title-custom .title-accent {
    font-size: 1.18rem;
    max-width: 100%;
    text-align: center;
  }

  .hero-title-custom .hero-separator {
    width: 170px;
    margin: 14px auto 16px;
  }

  .hero-logistica .hero-content p {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 24px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .hero-buttons .btn-hero {
    width: 100%;
    max-width: 340px;
    justify-content: center;
    text-align: center;
  }

  .hero-visual-custom {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding-top: 0;
  }

  .hero-image-small {
    max-width: 100%;
    width: 100%;
    border-radius: 22px;
  }

  .centered-track-box {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    display: block;
    width: 100%;
    max-width: 320px;
    margin: -8px auto 0;
    order: -1;
  }

  .tracking-box-inner {
    min-width: auto;
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .hero-logistica .floating-card.bottom-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-logistica {
    padding: 80px 0 55px;
  }

  .hero-logistica .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-badge {
    padding: 9px 14px;
    gap: 8px;
    margin-bottom: 18px;
  }

  .hero-badge span {
    font-size: 0.82rem;
  }

  .hero-title-custom {
    gap: 3px;
    margin-bottom: 18px;
  }

  .hero-title-custom .title-main {
    font-size: 2.15rem;
    line-height: 1.02;
    letter-spacing: -0.8px;
  }

  .hero-title-custom .title-sub {
    font-size: 0.98rem;
    line-height: 1.45;
    padding: 0 4px;
  }

  .hero-title-custom .title-accent {
    font-size: 1.02rem;
    line-height: 1.4;
    padding: 0 4px;
  }

  .hero-title-custom .hero-separator {
    width: 120px;
    height: 2px;
    margin: 12px auto 14px;
  }

  .hero-logistica .hero-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn-hero {
    max-width: 100%;
    width: 100%;
    min-height: 48px;
    padding: 13px 16px;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  .hero-image-small {
    border-radius: 18px;
    overflow: hidden;
  }

  .centered-track-box {
    max-width: 100%;
    margin-top: -6px;
  }

  .tracking-box-inner {
    padding: 13px 16px;
    border-radius: 12px;
  }

  .tracking-box-inner small {
    font-size: 0.74rem;
    margin-bottom: 3px;
  }

  .tracking-box-inner strong {
    font-size: 1rem;
    line-height: 1.2;
  }

  .hero-logistica .floating-card.bottom-card {
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .hero-logistica .floating-card.bottom-card small {
    font-size: 0.76rem;
  }

  .hero-logistica .floating-card.bottom-card strong {
    font-size: 0.95rem;
    line-height: 1.2;
  }
}

@media (max-width: 576px) {
  .hero-visual-custom {
    gap: 14px;
  }

  .centered-track-box {
    order: -1;
  }

  .hero-image-small img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
}

.centered-track-box {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 4;
}

.tracking-box-inner {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  color: #1b1b1b;
  padding: 16px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border-top: 4px solid #f5b300;
  min-width: 270px;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(6px);
  overflow: hidden;
  animation: pulseTrack 2.8s infinite ease-in-out;
}

.tracking-box-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 215, 80, 0.18) 45%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 215, 80, 0.18) 55%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shineTrack 3.2s infinite linear;
}

.tracking-box-inner small {
  display: block;
  font-size: 0.82rem;
  color: #6c757d;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.tracking-box-inner strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 900;
  color: #202020;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 2;
}

.centered-track-box:hover .tracking-box-inner {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 0 0 1px rgba(245, 179, 0, 0.18),
              0 0 18px rgba(245, 179, 0, 0.30),
              0 0 35px rgba(245, 179, 0, 0.18),
              0 18px 42px rgba(0, 0, 0, 0.22);
}

@keyframes shineTrack {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}

@keyframes pulseTrack {
  0%, 100% {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18),
                0 0 0 rgba(245, 179, 0, 0);
  }
  50% {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.20),
                0 0 18px rgba(245, 179, 0, 0.18);
  }
}

.tracking-box-inner {
  border-top: 4px solid #f5b300;
  animation: pulseTrack 2.8s infinite ease-in-out, borderGlow 2.2s infinite ease-in-out;
}

@keyframes borderGlow {
  0%, 100% {
    border-top-color: #f5b300;
  }
  50% {
    border-top-color: #ffd54a;
  }
}