/* --- INICIO: main.css --- */

/* Fonts */
:root {
  --default-font: "Inter",  sans-serif;;
  --heading-font: "Inter",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #1b1b1b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #003252; /* 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: #444444;  /* The default color of the main navmenu links */
  --nav-hover-color: #000000; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #003252; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

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

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

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



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

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

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

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

.header .logo h1 span {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 

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

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

#whatsapp-icon .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;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 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
--------------------------------------------------------------*/




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





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


.logo-brand {
  height: 70px;
  max-height: none !important; 
  width: auto;
  object-fit: contain;
  
}

.brand-subtitle {
  font-size: 22px;
  color: #555;
  width: auto;
  white-space: nowrap;
  line-height: 1.2;
  padding-top: 38px;
  padding-left: 15px; 
}




/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.p-home{
  text-align: left;
}

.p-operacionesYrubros {
  visibility: hidden;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: var(--accent-color);
  background-color: rgba(80, 80, 80, 0.1);
  max-width: 185px;
  padding: 0 5px;
  font-weight: 600;
}

.home-descript{
  color: var(--accent-color);
 
  
}

.title-description-home, .subtitle-description-home{
  justify-self: left;
  
}

.title-description-home{
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 900;
  /* line-height: 1.2; */
  color: #1b1b1b;
  /* width: 150%; */
  margin-bottom: 20px;
  
 
}

.subtitle-description-home{
  font-weight: 700;
  text-align: left;
  margin-top: 150px;  
}

.subtitle-description-home span{
  text-align: left;  
}


.list-description-home {
  text-align: left; 
  list-style-position: inside; 
  padding-left: 0; 
}

.list-description-home {
  display: block; 
  text-align: left;
  list-style-type: none;
 
  
}

.h4-section-title p.p-home {
  margin-bottom: 20px;
}

.container-areas {
  /* margin-top: 5px !important; */
  width: 80%;
  /*margin-left: 5%;  */
  padding-left: 0px;
  padding: 0 20px 20px 20px;
  background-color: #fff;
  
  
}

.sections-areas {
  display: flex;
  gap: 20px; /* Espacio entre los dos contenedores */
}

.section-area {
  flex: 1;
  background-color: rgb(224, 224, 224, .5); /* Color de fondo opcional */
  padding: 10px;
  padding-right: 5px !important;
  border-radius: 20px;
  text-align: left;
  margin-bottom: 50px;
}

.section-area h2 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.section-area p {
  color: #666;
  font-size: 16px;
  text-align: left;
}

.quote-button-areas {
  display: block;
  width: 150px;
  background: linear-gradient(90deg, #003252 0%, #095f94 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  color: #fff;
  border: none;
  padding: 10px 0 ;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;  
  margin: 20px 0 0 5%; 
  transition: width 0.4s ease, background-color 0.4s ease;
  margin-left: 0 !important;
}

.quote-button-areas:hover {
  width: 230px;  
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


/* CARRUSEL HOME */
.carrusel-iconos-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: 300px;
  overflow: hidden;
  position: relative;
  padding: 10px 20px; 
  /* margin-left: 10px; */
  margin-right: auto;
  margin-top: 40px;      
  margin-bottom: 140px !important; 
}



.carrusel-iconos {
  width: 240px;
  height: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.carrusel-iconos-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: iconosScrollDown 12s linear infinite;
}

.carrusel-iconos-track.reverse {
  animation: iconosScrollUp 15s linear infinite;
}

.carrusel-iconos img {
  width: 180px;
  height: auto;
  /* object-fit: cover; */
  margin-bottom: 20px;
}

/* Animaciones propias */
@keyframes iconosScrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes iconosScrollUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(-100%); }
}

/* Fade propio */
.fade-mask-iconos::before,
.fade-mask-iconos::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 20%;
  z-index: 2;
  pointer-events: none;
}

.fade-mask-iconos::before {
  top: 0;
  background: linear-gradient(to bottom, white 0%, transparent 100%);
}

.fade-mask-iconos::after {
  bottom: 0;
  background: linear-gradient(to top, white 0%, transparent 100%);
}

/* CARRUSEL RESPONSIVO */
@media (max-width: 768px) {
  .carrusel-iconos-wrapper {
    flex-direction: column;
    height: auto;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 0;
  }

  .carrusel-iconos {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .carrusel-iconos-track {
    flex-direction: row;
    animation: iconosScrollLeft 15s linear infinite;
  }

  .carrusel-iconos-track.reverse {
    animation: iconosScrollRight 15s linear infinite;
  }

  .carrusel-iconos img {
    width: 120px;
    margin: 0 10px;
  }

  .fade-mask-iconos::before,
  .fade-mask-iconos::after {
    display: none;
  }
}

/* Nueva animación para scroll horizontal */
@keyframes iconosScrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes iconosScrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }

  
}


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

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

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

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




/* /////////////////////////// */
.input-group {
width: 100%;
margin-bottom: 10px;
}

.input-group label {
display: block;
font-weight: bold;
margin-bottom: 5px;
color: #003252;
}

.input-wrapper {
display: flex;
align-items: center;
border: 1px solid #ccc;
border-radius: 5px;
overflow: hidden;
background-color: #fff;
}

.fixed-prefix {
font-family: 'Courier New', Courier, monospace;
background-color: #eee;
padding: 10px;
font-weight: bold;
color: #838383;
border-right: 1px solid #ccc;
}

.input-wrapper input {
flex: 1;
border: none;
padding: 10px;
font-size: 16px;
outline: none;
}

.input-row {
display: flex;
justify-content: space-between;
gap: 10px;
}

.half-width {
flex: 1;
}

.btn {
font-family: "Inter", sans-serif;
}

.btn:hover {
color:#252525 !important;
}



/* --- INICIO: styles.css --- */
.hero-modern {
    padding: 100px 0;
    background-color: #ffffff;
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 100px;
  }

  
  
  .hero-content {
    flex: 1;
  }

  .text-package{
    margin-right: 10px !important;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }

 


  .hero-modern1 {
    max-width: none;          
    width: 100%;              
    margin-top: 30px !important;           
    padding-left: 60px;         
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  
  
  
  .hero-image.contenedores {
    justify-content: flex-end;
    margin: 0;
    padding: 0;
  }
  
  .hero-image.contenedores img {
    width: 100%;
    max-width: 100%;    
    object-fit: cover;
    border-radius: 16px;
    margin-left: 300px !important;
    margin-top: 50px;
    margin-right: 0;
  }
  .hero-container {
    align-items: stretch
    /* justify-content: space-between;  */
  }
  
  .hero-image.amazon-package img {    
    margin-left: -100px;
    width: 125%;
    height: 105%;
    max-width: 1460px;
    border-radius: 16px;
    margin-top: -30px;
    }  

  .hero-content.text-package {
    padding-right: 120px;
  }

  .amz-box {
    width: 100vw;    
    margin-left: 180px;
    padding-left: 0;
    padding-right: 0;
    
  }

  .hero-image.simular-compra img {
    margin-top: 170px;
    max-height: 150% !important;
    width: auto;
    max-width: 150%;
    object-fit: cover;
    border-radius: 16px;
    margin-left: -160px !important;
  }


  
  .hero-title {
    font-family: "Inter", sans-serif;
    font-size: 70px !important;
    font-weight: 900;
    line-height: 1.2;
    margin-left: -40px !important;
    color: #1b1b1b;    
    margin-bottom: 20px;
    
  }
  
  .accent-text {
    color: #003252;
  }
  
  .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #4b4b4b;
    margin-bottom: 30px;
    margin-left: -40px !important;
    width: 90%;
    
  }
  
  .h4-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #4b4b4b;
    margin-bottom: 30px;
    
  }
  
  .btn-about {
    background: #f5f5f5;
    color: #4b4b4b;
    width: 150px;
    padding: 10px;
    border: solid 1px rgb(75, 75, 75, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: width 0.4s ease, background-color 0.4s ease;
    margin-left: -40px !important;
    
  }
  
  .btn-about:hover {
    width: 180px;
    color: #4b4b4b;
    background: #f5f5f5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .btn-contact {
    background: linear-gradient(90deg, #003252 0%, #0170b4 100%);
    color: #ffffff;
    width: 150px;
    padding: 10px;
    margin-left: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: width 0.4s ease, background-color 0.4s ease;
    
  }
  
  .btn-contact:hover {
    width: 180px;
    color: #ffffff;
    background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
  
  .img-hero {
    margin: 0 ;
    width: 100%;
    /* max-width: 700px; */
    border-radius: 16px;
    object-fit: cover;
  }


.hero-modern{
  
  margin-top: 50px;
}

.contenedores{
  margin-right: 0;
}


.hero-title2 {
  font-family: "Inter", sans-serif;
  font-size: 70px !important;  
  width: 120% !important;  
  font-weight: 900;
  line-height: 1.2;
  color: #1b1b1b;
  margin-top: -60px;
  margin-bottom: 20px;
  margin-left: 60px;
}


.h4-subtitle2 {
  width: 110%;
  font-size: 22px;
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 30px;
  margin-left: 60px;
}

.p-hero-list{
  margin-left: 60px !important;
}

.btn-contact2 {
  background: linear-gradient(90deg, #003252 0%, #0170b4 100%);
  color: #ffffff;
  width: 150px;
  padding: 10px;
  /* padding: 12px 30px; */
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: width 0.4s ease, background-color 0.4s ease;
  margin-left: 60px;
}

.btn-contact2:hover {
  width: 180px;
  color: #ffffff;
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-contact2b {
  background: linear-gradient(90deg, #003252 0%, #0170b4 100%);
  color: #ffffff;
  width: 150px;
  padding: 10px 10px 10px 25px;  
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: width 0.4s ease, background-color 0.4s ease;
  margin-top: 20px;
  
}

.btn-contact2b:hover {
  width: 180px;
  color: #ffffff;
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-title3 {
  font-family: "Inter", sans-serif;
  font-size: 48px !important;
  font-weight: 900 !important;
  text-align: left;
  line-height: 1.2;
  color: #1b1b1b;
  width: 100%;
  margin-bottom: 20px;
  margin-left: -100px; 
}

.h4-subtitle3 {
  width: 110%;
  font-size: 22px;
  font-weight: 600;
  color: #4b4b4b;
  margin-bottom: 30px;
  margin-left: 200px;
}

.hero-subtitle3 {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  margin-left: -100px;
  padding-right: 60px;
}

.hero-title4 {
  font-family: "Inter", sans-serif;
  font-size: 48px !important;
  font-weight: 900 !important;
  margin-top: 230px;
  margin-bottom: 50px !important;
  width: 150%;
  /* text-align: left;
  line-height: 1.2;
  color: #1b1b1b;
  
  
  margin-left: -100px;  */
}
.hero-subtitle4 {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  /* margin-left: -100px; */
}


/* PRIMERA IMPORTACION */

.container-primeraImpo {
  margin-top: 30px !important;
  width: 100%;
  margin-left: -125px; 
  padding-left: 0px;
  padding: 0 20px 20px 20px;
  background-color: #fff;
  
  
}

.sections-primeraImpo {
  display: flex;
  justify-content: center; 
  gap: 60px;               
  flex-wrap: nowrap;       
  width: 110%;
}

.section-primera-impo {
  width: 48%;  
  margin-top: 50px;
  margin-bottom: 40px;
  background-color: rgb(224, 224, 224, .5); /* Color de fondo opcional */
  padding: 15px;
  border-radius: 20px;
  text-align: left;
}

.section-primera-impo h2 {
  color: #333;
  font-size: 18px !important;
  font-weight: 600;
}

.section-primera-impo p {
  color: #666;
  font-size: 16px;
  text-align: left;
}

a.quote-button-primera-impo {
  display: block;
  width: 150px;
  background: linear-gradient(90deg, #003252 0%, #095f94 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  color: #fff;
  border: none;
  padding: 10px 0 ;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;  
  margin: 20px 0 0 ; 
  transition: width 0.4s ease, background-color 0.4s ease;
}

a.quote-button-primera-impo:hover {
  width: 230px;
  color: #ffffff;  
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-image.primera-impo img {
  margin-top: 40px;
  max-height: 100% !important;
  width: auto;
  max-width: 200%;
  object-fit: cover;
  border-radius: 16px;
  margin-left: 70px !important;
}

/* ZONA FRANCA */

.hero-title5 {
  font-family: "Inter", sans-serif;
  font-size: 36px !important;
  font-weight: 700 !important;
  margin-top: 180px !important;
  margin-bottom: 50px !important;
  line-height: 1.2;
  color: #1b1b1b;
  width: 100%;  
  /* margin-left: -100px !important;   */
}
.hero-subtitle5 {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  /* margin-left: -100px; */
}

.zona-franca-title{
  text-transform: uppercase;
  font-weight: bold;
}

.container-zf {
  margin-top: 50px !important;
  width: 100%;
  margin-left: -25px; 
  padding-left: 0px;
  padding: 0 20px 20px 20px;
  background-color: #fff;
  
  
}

.sections-zf {
  margin: 30px 0 80px 0 !important;
  display: flex;
  gap: 20px; /* Espacio entre los dos contenedores */
}

.section-zona-franca {
  flex: 1;
  background-color: rgb(224, 224, 224, .5); /* Color de fondo opcional */
  padding: 15px;
  border-radius: 20px;
  text-align: left;
}

.section-zona-franca h2 {
  color: #333;
  font-size: 18px !important;
  font-weight: 700;
}

.section-zona-franca p {
  color: #666;
  font-size: 16px !important;
  text-align: left;
}

a.quote-button-zona-franca {
  display: block;
  width: 150px;
  background: linear-gradient(90deg, #003252 0%, #095f94 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  color: #fff;
  border: none;
  padding: 10px 0 ;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;  
  margin: 20px 0 0 ; 
  transition: width 0.4s ease, background-color 0.4s ease;
}

a.quote-button-zona-franca:hover {
  width: 230px;
  color: #ffffff;  
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-image.zona-franca img {
  margin-top: 140px;
  max-height: 250% !important;
  height: 200% !important;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin-left: -180px !important;
  margin-top: 110px !important;
}

/* COBERTURA NACIONAL DE ADUANA */
.container-coberturaAduana {
  margin-top: 30px !important;
  width: 100%;
  margin-left: -125px; 
  padding-left: 0px;
  padding: 0 20px 20px 20px;
  background-color: #fff;
  
  
}

.sections-coberturaAduana {
  display: flex;
  gap: 20px; 
}

.p-aduana{
  margin-top: 10px;
  font-weight: bold;
}

.li-aduana{
  
  font-weight: bold;
}

.aduana-li{
  
  font-weight:normal;
}

a.quote-button-cobertura-aduana {
  display: block;
  width: 150px;
  background: linear-gradient(90deg, #003252 0%, #095f94 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  color: #fff;
  border: none;
  padding: 10px 0 ;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;  
  margin-top: 20px; 
  margin-left: -100px;
  transition: width 0.4s ease, background-color 0.4s ease;
}

a.quote-button-cobertura-aduana:hover {
  width: 230px;
  color: #ffffff;  
  background: linear-gradient(90deg, #0170b4 0%, #003252 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


.hero-image.cobertura-aduana img {
  margin-top: 40px;
  max-height: 100% !important;
  width: auto;
  height: 100% !important;
  max-width: 200%;
  object-fit: cover;
  border-radius: 16px;
  margin-left: 70px !important;
}

.list-aduana {
  text-align: left; 
  list-style-position: inside; 
  padding-left: 0; 
}

.list-aduana {
  display: block; 
  text-align: left;
  list-style-type: none;
  margin-left: -105px !important;
  margin-top: 20px !important; 
}


/* WHATSAPP */

.whatsapp {
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	left:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	font-size:30px;
	z-index:100;
  }
  
  .whatsapp-icon {
	margin-top:13px;
  }

  .fixed-action-btn {  
    position: fixed;
    bottom: 50px;
    left: -5px;
    z-index: 999;
  }
  
  .fixed-action-btn .whatsapp-btn {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .fixed-action-btn .whatsapp-btn:hover {
    width: 100px;
  }
  
  .fixed-action-btn .slider {
    position: absolute;
    bottom: 0;
    left: 90px;
    background-color: #25d366;
    color: #fff;
    padding: 8px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    white-space: nowrap;
    text-transform: uppercase;
  }
  
  .fixed-action-btn:hover .slider {
    opacity: 1;
    left: 90px;
  }
  
  .tab {
    white-space: nowrap;
  }
  
  .btn-floating {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn-floating i {
    color: #fff;
  }
  
  .btn-lg {
    width: 64px;
    height: 64px;
    font-size: 24px;
  }

/* END WHATSAPP */   

/* ========== RESPONSIVO MOBILE ========== */
@media screen and (max-width: 767px) {
  /* Ajustes generales */
  .hero-modern1, 
  .hero-modern,
  .section-title,
  .p-home,
  .hero-subtitle,
  .h4-subtitle,
  .h4-subtitle2,
  .hero-title,
  .hero-title2,
  .hero-title3,
  .hero-title4,
  .hero-title5,
  .hero-subtitle3,
  .hero-subtitle4,
  .hero-subtitle5,
  .p-hero-list,
  .empresa-p-subtitle,
  .title-description-home,
  .subtitle-description-home,
  .list-description-home,
  .list-aduana {
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
  }

  /* Ajustes específicos para títulos */
  .hero-title {
    font-size: 32px !important;
    margin-left: 0 !important;
  }

  .hero-title2 {
    font-size: 32px !important;
    margin-left: 0 !important;
    margin-top: 20px !important;
  }

  .hero-title3, 
  .hero-title4,
  .hero-title5 {
    font-size: 28px !important;
    margin-left: 0 !important;
  }

  /* Botones */
  .btn-about,
  .btn-contact,
  .btn-contact2,
  .btn-contact2b,
  .quote-button-primera-impo,
  .quote-button-zona-franca,
  .quote-button-cobertura-aduana,
  .quote-button-areas {
    display: block !important;
    margin: 20px auto !important;
    text-align: center;
    width: 80% !important;
    max-width: 250px;
  }

  /* Contenedores flexibles */
  .hero-container,
  .hero-container1,
  .sections-areas,
  .sections-primeraImpo,
  .sections-zf,
  .row.gy-4.align-items-start {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    padding: 0 15px !important;
  }

  .sections-primeraImpo {
    display: flex;
    justify-content: center; 
    gap: 60px;               
    flex-wrap: nowrap;       
    width: 110%;
    margin-left: -10px;
}

  /* Imágenes */
  .hero-image img,
  .hero-image.contenedores img,
  .hero-image.amazon-package img,
  .hero-image.simula-compra img,
  .hero-image.primera-impo img,
  .hero-image.zona-franca img,
  .hero-image.cobertura-aduana img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 20px 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-image.amazon-package img {    
    margin-left: 20px;
    margin-right: 30px !important;
    width: 100%;
    height: 50% !important;
    max-width: 120%;
    border-radius: 16px;
    margin-top: -30px;
    } 

  #img-simular-compra {    
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto;
    height: 50% !important;
    max-width: 120%;
    border-radius: 16px;
    margin-top: -30px;
    }  

  .amz-box {
     width: 100vw;    
     margin-left: 50px;
     padding-left: 0;
     padding-right: 0;
        
   }


  /* Secciones específicas */
  .section-area,
  .section-primera-impo,
  .section-zona-franca {
    width: 100% !important;
    margin: 10px 0 !important;
  }


  /* Contenedores específicos */
  .container-areas,
  .container-primeraImpo,
  .container-zf {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0 15px !important;
  }

  /* Listas */
  .list-aduana {
    margin-left: 0 !important;
    padding-left: 20px !important;
    text-align: left;
  }

  /* Logo y Frase cabecera */
  .logo.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .logo-brand {
    margin-bottom: 5px; 
    max-width: 40%;
    height: auto;
    margin-bottom: 0 !important;
    /* display: block;  */
  }

  .brand-subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  /* 🦶 Centrado total del footer */
  footer .container,
  footer .row,
  footer .footer-content,
  footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .footer-col {
    width: 100%;
    margin-bottom: 20px;
  }

 .social-links {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  footer .footer-bottom {
    font-size: 14px;
    padding: 10px 0;
  }

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

}


/* ========== RESPONSIVO TABLET ========== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* Ajustes generales */
  .hero-title,
  .hero-title2,
  .hero-title3,
  .hero-title4,
  .hero-title5,
  .hero-subtitle,
  .hero-subtitle3,
  .hero-subtitle4,
  .hero-subtitle5,
  .h4-subtitle,
  .h4-subtitle2,
  .p-hero-list,
  .title-description-home,
  .subtitle-description-home,
  .p-home {
    text-align: left !important;
    margin-left: 30px !important;
    padding-right: 30px !important;
    width: 100% !important;
  }

  /* Tamaños de fuente */
  .hero-title {
    font-size: 40px !important;
  }

  .hero-title2 {
    font-size: 36px !important;
    margin-left: 30px !important;
  }

  .hero-title3,
  .hero-title4,
  .hero-title5 {
    font-size: 32px !important;
  }

  /* Contenedores flexibles */
  .hero-container,
  .hero-container1 {
    flex-direction: column;
    gap: 40px;
    padding: 0 30px;
  }

  /* Imágenes */
  .hero-image img,
  .hero-image.contenedores img,
  .hero-image.amazon-package img,
  .hero-image.simular-compra img,
  .hero-image.primera-impo img,
  .hero-image.zona-franca img,
  .hero-image.cobertura-aduana img {
    width: 80% !important;
    margin: 30px auto !important;
  }

  /* Secciones de dos columnas */
  .sections-areas,
  .sections-primeraImpo,
  .sections-zf {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .section-area,
  .section-primera-impo,
  .section-zona-franca {
    width: 80% !important;
    margin: 0 auto 20px !important;
  }

  /* Carrusel */
  .carrusel-iconos-wrapper {
    width: 95% !important;
    margin: 0 auto;
  }

  .carrusel-iconos-track {
    animation: iconosScrollLeft 15s linear infinite !important;
  }

  .carrusel-iconos-track.reverse {
    animation: iconosScrollRight 15s linear infinite !important;
  }

  .carrusel-iconos img {
    height: 180px !important;
    margin: 0 15px !important;
  }

  /* Botones */
  .btn-contact,
  .btn-contact2,
  .btn-contact2b,
  .quote-button-primera-impo,
  .quote-button-zona-franca,
  .quote-button-cobertura-aduana,
  .quote-button-areas {
    margin-left: 30px !important;
  }
}

/* ========== RESPONSIVO NOTEBOOK ========== */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  body{
    margin-left: 80px !important;
  }
  /* Ajustes generales */
  .hero-title,
  .hero-title2,
  .hero-title3,
  .hero-title4,
  .hero-title5,
  .hero-subtitle,
  .hero-subtitle3,
  .hero-subtitle4,
  .hero-subtitle5,
  .h4-subtitle,
  .h4-subtitle2,
  .p-hero-list {
    margin-left: 60px !important;
    padding-right: 40px !important;
  }

  /* Imágenes */
  .hero-image img,
  .hero-image.contenedores img,
  .hero-image.amazon-package img,
  .hero-image.simular-compra img,
  .hero-image.primera-impo img,
  .hero-image.zona-franca img,
  .hero-image.cobertura-aduana img {
    width: 90% !important;
    margin-left: 40px !important;
  }

  /* Carrusel */
  .carrusel-iconos-wrapper {
    width: 90% !important;
  }

  .carrusel-iconos img {
    height: 220px !important;
  }

  /* Logo y subtítulo */
  .logo.d-flex {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  .logo-brand {
    margin-bottom: 5px;
    max-width: 100%;
    height: auto;
  }

  .brand-subtitle {
    font-size: 18px;
    padding: 0 10px;
  }
}

/* Animaciones para carrusel horizontal */
@keyframes iconosScrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes iconosScrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* CARRUSEL RESPONSIVO */
@media (max-width: 768px) {
  .carrusel-iconos-wrapper {
    flex-direction: column;
    height: auto;
    gap: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 10px 0;
  }

  .carrusel-iconos {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .carrusel-iconos-track {
    flex-direction: row;
    animation: iconosScrollLeft 15s linear infinite;
  }

  .carrusel-iconos-track.reverse {
    animation: iconosScrollRight 15s linear infinite;
  }

  .carrusel-iconos img {
    width: 120px;
    margin: 0 10px;
  }

  .fade-mask-iconos::before,
  .fade-mask-iconos::after {
    display: none;
  }


/* Nueva animación para scroll horizontal */
@keyframes iconosScrollLeft {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

@keyframes iconosScrollRight {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

}

@media screen and (max-width: 767px) {
  footer .col-lg-3,
  footer .col-md-6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
    margin-left: 0 !important ;
  }

  footer .col-lg-3.d-flex,
  footer .col-md-6.d-flex {
    flex-direction: row !important;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-left: 0 !important ;
  }

  footer .col-lg-3.d-flex i,
  footer .col-md-6.d-flex i {
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
    margin-left: 0 !important ;
  }

  footer .col-lg-3 h4,
  footer .col-md-6 h4 {
    margin-bottom: 5px;
    font-size: 16px;
    text-align: left;
    margin-left: 0 !important ;
  }

  footer .col-lg-3 p,
  footer .col-md-6 p {
    margin: 0;
    font-size: 14px;
    text-align: left;
    margin-left: 0 !important ;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }

  /* Centramos el bloque de "Síguenos" */
  footer .col-lg-3:last-child {
    align-items: center;
    text-align: center;
  }

  footer .col-lg-3:last-child h4 {
    margin-bottom: 10px;
  }
}



@media screen and (max-width: 767px) {

  body{
    left: 20px !important;
    right: 20px !important;
  }
  /* Asegura alineación vertical pareja */
  .footer-mobile {
    align-items: flex-start !important;
    padding-left: 0 !important;
  }

  footer .col-lg-3,
  footer .col-md-6 {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
    padding-left: 0 !important;
  }

  footer .col-lg-3.d-flex,
  footer .col-md-6.d-flex {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
  }

  footer .col-lg-3.d-flex i,
  footer .col-md-6.d-flex i {
    font-size: 22px;
    margin-top: 6px;
    flex-shrink: 0;
    margin-left: 0 !important;
  }

  footer .col-lg-3 h4,
  footer .col-md-6 h4 {
    font-size: 16px;
    margin: 0 0 6px 0;
  }

  footer .col-lg-3 p,
  footer .col-md-6 p {
    margin: 0;
    font-size: 14px;
  }

  .social-links {
    justify-content: flex-start !important;
    margin-top: 10px;
    gap: 14px;
  }

  footer .col-lg-3:last-child {
    flex-direction: column;
    text-align: left;
  }
}

@media (min-width: 1900px){
  /* .hero-modern1 {
    max-width: 100%;
    width: 80%;
    margin-left: 120px;
    padding-right: -400px !important;
    

  }

  .hero-image.contenedores img {
    margin-right: -280px !important;
    width: 130% !important;
    height: auto !important;
    max-width: none;
    border-radius: 16px;
    margin-top: -30px;

  }

  

  .hero-image.amazon-package img {
    margin-left: 200px;
    width: 140%;
    height: auto;
    max-width: none;
    border-radius: 16px;
    margin-top: -30px;
  } */


   .hero-modern1 {    
    max-width: 100%;
    width: 80%;
    margin-left: 220px;
    margin-right: 100px !important; 
  }

  .hero-modern1 .hero-container1 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .hero-modern1 .hero-image.contenedores img {
    /* margin-right: -300px !important; */
    margin-right: 0 !important;
    width: 110% !important;
    height: auto !important;
    max-width: none;
    border-radius: 16px;
    margin-top: -30px;
  }

  /* ===== SEGUNDA SECCIÓN: Amazon box ===== */
  .hero-modern .hero-container.amz-box {
    width: 120%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
  }

  .hero-modern .hero-image.amazon-package img {
    margin-left: -300px !important;
    width: auto;
    max-width: none;
    height: auto;
    border-radius: 16px;
    margin-top: -30px;
    padding-left: -380px !important;
    margin-right: -250px !important;
  }

  .hero-content{
    width: 150% !important;
    /* max-width: 800px; */
    /* margin-left: -200px !important;
    padding-right: 0 !important; */
  }

  .hero-image.simular-compra img {
    margin-left: -200px !important;
    width: auto;
    max-width: none;
  }
  .hero-image.primera-impo img {
    margin-left: -200px !important;
    width: auto;
    max-width: none;
    margin-top: 40px;
}

}

@media screen and (max-width: 768px) {
  body img {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

}


/* ========== MEDIA QUERY PARA NOTEBOOKS (14" a 17") ========== */
@media screen and (min-width: 1366px) and (max-width: 1920px) {
  /* Ajustes generales para el layout */
  body {
    margin-left: 0 !important;
    /* padding: 0 5%; */
  }

  /* Primera sección hero-modern1 */
  /* .hero-modern1 {
    padding-left: 40px !important;
    gap: 30px;
    margin-top: 20px !important;
  } */

  /* .hero-container1 {
    max-width: 95%;
    margin: 0 auto;
  } */

  /* .hero-content {
    flex: 1;
    padding-right: 40px;
  } */

  /* .hero-title {
    font-size: 60px !important;
    margin-left: -10px !important;
    width: 100% !important;
  } */

  /* .hero-subtitle {
    width: 80% !important;
    margin-left: -20px !important;
  } */

  .hero-image.contenedores img {
    margin-left: 180px !important;
    width: 110%;
    max-width: 800px;
  }

  /* Segunda sección hero-modern (Amazon box) */
  .hero-modern {
    padding: 80px 0;
    padding: 5%;
  }

  .hero-container.amz-box {
    width: 90%;
    margin-left: 5% !important;
    gap: 60px;
  }

  .hero-image.amazon-package img {
    margin-left: -80px !important;
    width: 120%;
    max-width: 650px;
  }

  .hero-content.text-package {
    padding-right: 60px;
  }

  .hero-title2 {
    font-size: 60px !important;
    margin-left: 30px !important;
    width: 110% !important;
  }

  .h4-subtitle2,
  .p-hero-list {
    margin-left: 30px !important;
  }

  .btn-contact2 {
    margin-left: 30px !important;
  }

  /* Sección de carrusel y descripción */
  .container section-title {
    margin-left: -50px !important;
  }

  .hero-title3 {
    font-size: 42px !important;
    margin-left: -80px !important;
  }

  .hero-subtitle3 {
    padding-right: 40px;
    margin-left: -80px !important;
  }

  .list-aduana {
    padding-right: 40px;
    margin-left: -80px !important;
  }

  .quote-button-cobertura-aduana {
    padding-right: 40px;
    margin-left: -80px !important;
  }

  .hero-image.simular-compra img {
    margin-left: -120px !important;
    max-width: 120%;
  }

  /* Sección de primera importación */
  .hero-title4 {
    margin-top: 220px !important;
    font-size: 42px !important;
  }

  .container-primeraImpo {
    margin-left: -80px !important;
  }

  .sections-primeraImpo {
    gap: 40px;
    width: 105%;
  }

  .hero-image.primera-impo img {
    margin-left: 40px !important;
    max-width: 110%;
  }

  /* Sección zona franca */
  .hero-title5 {
    margin-top: 150px !important;
    font-size: 36px !important;
  }

  .hero-image.zona-franca img {
    margin-left: -140px !important;
    max-width: 100%;
    height: auto !important;
  }

  /* Ajustes para los botones */
  /* .btn-about,
  .btn-contact,
  .btn-contact2,
  .btn-contact2b {
    width: 160px !important;
    font-size: 15px !important;
  } */

  /* Ajustes específicos para el carrusel */
  .carrusel-iconos-wrapper {
    margin-bottom: 100px !important;
  }

  .carrusel-iconos img {
    width: 160px;
  }

  /* Ajustes para las áreas de texto */
  .section-area,
  .section-primera-impo,
  .section-zona-franca {
    padding: 15px;
  }

  /* Exclusión para pantallas mayores a 20" */
  @media screen and (min-width: 1921px) {
    /* Restablece todos los estilos a los valores originales */
    body {
      margin-left: auto !important;
      padding: 0;
    }
    
    .hero-modern1,
    .hero-modern,
    .hero-container1,
    .hero-container,
    .hero-title,
    .hero-title2,
    .hero-title3,
    .hero-title4,
    .hero-title5,
    .hero-subtitle,
    .hero-subtitle3,
    .h4-subtitle2,
    .p-hero-list,
    .hero-image img,
    .container-primeraImpo,
    .sections-primeraImpo,
    .hero-image.primera-impo img,
    .hero-image.zona-franca img,
    .btn-about,
    .btn-contact,
    .btn-contact2,
    .btn-contact2b {
      all: revert;
    }
  }
}


