/* --- 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
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

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

/*--------------------------------------------------------------
# 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;
}

.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(--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
--------------------------------------------------------------*/
@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);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

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

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

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

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

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

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

.hero .carousel-container {
  position: absolute;
  inset: 90px 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

@media (max-width: 575px) {
  .hero .carousel-container {
    inset: 90px 50px;
  }
}

.hero h2 {
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h2 span {
  color: var(--accent-color);
  /* text-shadow: 2px 2px 1px rgba(255, 255, 255, 0.5); */
  background-color: rgb(204, 204, 204);
  padding: 0 10px;
  
}

.hero h4 {
  color: var(--default-color); 
  font-weight: 800;
  margin-top: 20px;
  margin-bottom: 30px;
  
}

.p-hero-list{
  margin-top: 5px;
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0;
  align-self: flex-start;
  flex-shrink: 0;
  border: 2px solid var(--accent-color);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
  z-index: 3;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
  opacity: 1;
  height: 6px;
  width: 20px;
  transition: 0.3s;
  padding: 0;
}

.hero .carousel-indicators .active {
  background-color: var(--accent-color);
  width: 40px;
}

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

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

@media (max-width: 768px) {
    .logo-brand {
      width: 40%; 
      height: auto;
    }
  }


/* ------------------------------------------------------------
#  CALCULADORA 
--------------------------------------------------------------*/
.calculator-body {
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
  height: 100vh;
}
.title-calculator{
font-family: "Inter", sans-serif;
color: #003252;
font-weight: bolder;
text-transform: uppercase;
}


.calculator-h2 {
  font-family: "Inter", sans-serif;
  color: #003252;
}

.calculator-label {
  font-family: "Inter", sans-serif;
  color: #003252;
}

.calculator-a{
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}


.calculadora {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 500px;
}

.calculadora .calculator-h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #003252;
}

.calculadora .calculator-label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #003252;
}

.calculadora select,
.calculadora input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Courier New', Courier, monospace;
}

.calculator-btn {
  font-family: "Inter", sans-serif;
  margin-top: 10px;
  padding: 10px;
  background-color: #003252;
  /* background-color: #666666; */
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
}

.calculator-btn:hover {
  /* background-color: #003252; */
  background: linear-gradient(to right, #f5f5f5, #dcdcdc, #ffffff, #b0b0b0);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.8),
              0 4px 6px rgba(0,0,0,0.25);
  transition: background 0.3s ease, 
  box-shadow 0.3s ease;
  color:#252525
}

.categoria-item {
  background-color: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
  position: relative;
  
}

.categoria-item .quitar-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  cursor: pointer;
  width: auto;
}

.quitar-btn:hover{
    background:  #dd1641;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.8),
                0 4px 6px rgba(0,0,0,0.25);
    transition: background 0.3s ease, 
    box-shadow 0.3s ease;
}


.total-final {
  margin-top: 20px;
  background-color: #d3d3d3;
  padding: 15px;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: bold;
  font-size: 1.1em;
  text-align: center;
  color: #003252;
  
}

.calculadora select,
.calculadora input {
width: 100%;
box-sizing: border-box;

}

option  {
font-family: 'Courier New', Courier, monospace;
}    

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

  .importacion-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 .hero-container1 {
    max-width: none;          
    width: 100%;              
    margin-top: 120px;           
    padding-left: 60px;         
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hero-modern1 {
    max-width: none;          
    width: 100%;              
    margin-top: 120px;           
    padding-left: 60px;         
    gap: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-modern1 .importacion-container {
    max-width: none;          
    width: 100%;              
    margin-top: 50px;           
    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;  */
  }
  
  .importacion-container {
    align-items: stretch
    /* justify-content: space-between;  */
  }
  
  .hero-image.images-service-1 img {
    margin-top: 50px;
    margin-left: 420px;
    width: 145%;
    height: 80%;
    max-width: 1460px;
    /* object-fit: cover; */
    border-radius: 16px;
    /* margin-right: 250px; */
  }
  
  .hero-image.images-service-2 img {
    margin-top: 50px;
    margin-left: 120px;
    width: 100%;
    height: 80%;
    max-width: 1460px;
    /* object-fit: cover; */
    border-radius: 16px;
    /* margin-right: 250px; */
  }

   .hero-image.images-service-3 img {
    margin-top: 180px;
    margin-left: -90px;
    width: 100%;
    height: 100%;
    max-width: 1460px;
    /* object-fit: cover; */
    border-radius: 16px;
    /* margin-right: 250px; */
  }

    #text-inicio-services{
    /* text-align: center !important; */
    margin-left: 110px !important;
    width: 100% !important;
  }

  .hero-content.text-package {
    padding-right: 80px;
    margin-top: 50px;
  }

  .import {
    width: 100vw; 
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
    
  }

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

  .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: 48px;
    font-weight: 900;
    line-height: 1.2;
    color: #1b1b1b;
    /* width: 100%; */
    margin-bottom: 20px;
    
  }
  
  .accent-text {
    color: #003252;
  }
  
  .hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #4b4b4b;
    margin-bottom: 30px;
    
  }
  
  .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;
    
  }
  
  .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;
    /* 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;
    
  }
  
  .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;
  }
  
  /* Responsive Mobile */
  @media (max-width: 991px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }
    .importacion-container {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image {
      margin-top: 30px;
    }
  
    .btn-contact {
      width: auto;
      justify-content: center;
    }
  }

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

.contenedores{
  margin-right: 0;
}


.hero-title-service-section {
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b1b1b;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 280px;
}
.hero-subtitle-1 {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  margin-left: 280px;
}

.h4-subtitle-1 {
  width: 90%;
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  margin-left: 280px;
}

.p-hero-list{
  margin-left: 200px;
}

.btn-contact-services-2 {
  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: 280px;
}

.btn-contact-services-2: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.4;
  color: #1b1b1b;
  width: 100%;
  margin-bottom: 20px;
  margin-left: -100px; 
}

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

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

.importacion-title {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700 !important;
  text-align: left;
  line-height: 1.2;
  color: #1b1b1b;
  width: 100%;
  margin-bottom: 50px !important;
  margin-top: 40px !important; 
}


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

  .list-importacion {
    padding-left: 0;
    list-style: none;
    margin: 0;
    text-align: left;
    
}

.list-importacion li {
    margin-top: 10px !important;
    display: flex;
    align-items: flex-start;    
    gap: 8px;
    line-height: 1,2 !important;
    font-size: 18px;
    font-weight: 800;
    color: #4b4b4b;
}

.hero-title4 {
  font-family: "Inter", sans-serif;
  font-size: 48px !important;
  font-weight: 900 !important;
  margin-top: 230px;
}

.hero-subtitle4 {
  font-size: 18px;
  font-weight: 400;
  color: #4b4b4b;
  margin-bottom: 30px;
  /* margin-left: -100px; */
}


/* EXPORTACION */

a.quote-button-export {
  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 ;
  margin-left: 50px; 
  transition: width 0.4s ease, background-color 0.4s ease;
}

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

#export-mobile {
  font-family: "Inter", sans-serif;
  font-size: 52px !important;
  font-weight: 700;
  line-height: 1.2;
}
#import-title {
  font-family: "Inter", sans-serif;
  font-size: 52px !important;
  font-weight: 700;
  margin-bottom: 10px !important;
}

.export-title {
  font-family: "Inter", sans-serif;
  font-size: 52px !important;
  font-weight: 700 !important;
  text-align: left;
  line-height: 1.2;
  color: #1b1b1b;
  width: 100%;
  margin-bottom: 20px;
  justify-self: left;
  margin-top: 40px;
  margin-left: 50px;
}

.export-title span{
  text-align: left;  
}

  #img-export img {
  /* display: block !important; */
  margin-left: -80px !important;  
  width: 85% !important;
  max-width: 100% !important;
  height: auto !important;
  padding: 0 !important;
}

.hero-image.export-img img {
  margin-top: 50px;
  max-height: 250% !important;
  height: 100% !important;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  margin-left: -10px !important;
}

 .list-export {
    padding-left: 0;
    list-style: none;
    margin: 0;
    text-align: left;

}

.list-export li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #4b4b4b;
    margin-left: 50px;
}



/* Importaciones y Exportaciones Temporales y Curier */
.img-cobertura-aduana {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}



.courier-img{
  margin-left: 90px;
}

.impo-expo-temp-img {
  margin-left: 10px;
}

.impo-expo-temp-text {
  margin-left: -10px;
  
  font-size: 36px !important;
  width: 100%;
}

.list-export-import-temp {
    padding-left: 0;
    list-style: none;
    margin: 0;
    text-align: left;

}

.list-export-import-temp li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 18px;
    font-weight: 800;
    color: #4b4b4b;
    margin-left: -10px;
    width: 100%;
}

.courier-text-wrapper {
  padding-left: 12px; 
  text-align: left;
}

.courier-title {
  font-size: 36px;
  font-weight: 700;
  color: #003b5c; 
  margin-left: 30px;
  margin-bottom: 15px;
}

.courier-description {
  font-size: 18px;
  font-weight: 700;
  color: #4b4b4b;
  line-height: 1.6;
  margin: 0;
}

#courier-description2 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #4b4b4b;
  line-height: 1.6;
  width: 95% !important;
  margin-left: 30px !important;
}

.courier-text-wrapper{
  text-align: left;
  padding-right: 12px; 
  margin-left: 50px !important;
  margin-top: 50px !important;
  width: 100%;
}

.quote-button-cobertura-aduana {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0056d2;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.quote-button-cobertura-aduana:hover {
  background-color: #0041a8;
}

/* MODULOS */

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

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

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

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

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

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

.p-modulos {
  width: 100%;
  max-width: 600px;
  font-weight: 700;
  margin: 0 ;
  font-size: 16px !important;
  text-align: left;
  color: #4b4b4b;
}

.modulo-title{
  justify-self: center;  
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 50px !important;
  font-weight: 700 !important;  
  line-height: 1.2;
  color: var(--accent-color);
  width: 100%;
  margin-bottom: 20px; 
  margin-top: 40px;
  /* margin-left: 50px; */
}

.cierre-modulo{
  font-family: "Inter", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  justify-self: center;  
  text-align: center;
  color: #1b1b1b;
  width: 100%;
  margin-top: 70px;
  margin-bottom: 50px;
  /* margin-left: 280px; */
}

.img-wrapper {
  margin: -16px -16px 12px -16px; /* Elimina espacio superior y lateral */
  border-radius: 12px;  
  overflow: hidden;
}

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

/* 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 */ 

/* ===================== */
/* 📱 MOBILE (hasta 767px) */
/* ===================== */
@media (max-width: 767px) {
  .hero-container,
  .importacion-container,
  .hero-modern1 {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    text-align: center;
  }

  .hero-title, .hero-title3, .hero-title4, .hero-title-service-section {
    font-size: 28px !important;
    margin-left: 0 !important;
    text-align: center;
  }

  .hero-subtitle, .hero-subtitle-1, .hero-subtitle-4 {
    font-size: 16px;
    margin-left: 0 !important;
    text-align: center;
  }

  .btn-contact, .btn-contact-services-2 {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  .hero-image img,
  .img-hero,
  .img-cobertura-aduana {
    margin-left: 0 !important;
    width: 100%;
    height: auto;
  }
  
    

  .export-title,
  .impo-expo-temp-text,
  .courier-title {
    font-size: 26px !important;
    margin-left: 0 !important;
    text-align: center;
  }

  .p-courier,
  .p-courier-2,
  .courier-text,
  .p-modulos,
  .list-export-import-temp li,
  .list-importacion li {
    margin-left: 0 !important;
    text-align: center;
  }

  .brand-subtitle {
    font-size: 14px;
    padding-left: 0;
    text-align: center;
    white-space: normal;
  }

  .btn-about, .quote-button-export {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 0 auto;
  }
  
 .logo-brand {
    margin-bottom: 5px; /* espacio entre logo y subtítulo */
    max-width: 40% !important;
    height: auto;
  }
}

/* ======================= */
/* 💻 NOTEBOOKS / DESKTOPS */
/* ======================= */
@media (min-width: 1025px) {
  .hero-container,
  .importacion-container {
    flex-direction: row;
    gap: 100px;
    padding: 0 40px;
  }

  .hero-title {
    font-size: 52px;
    text-align: left;
  }

  .hero-subtitle {
    font-size: 18px;
    text-align: left;
  }

  .btn-contact {
    width: auto;
    justify-content: flex-start;
  }

  .img-cobertura-aduana {
    max-width: 600px;
  }
}

/* ===================== */
/* 📲 TABLETS (768–1024px) */
/* ===================== */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container,
  .importacion-container {
    flex-direction: column;
    padding: 30px;
    text-align: center;
  }

  .hero-title, .hero-title3, .hero-title4 {
    font-size: 36px;
    margin-left: 0;
    text-align: center;
  }

  .hero-subtitle {
    font-size: 16px;
    text-align: center;
  }

  .btn-contact, .btn-contact-services-2 {
    width: auto;
    justify-content: center;
    margin: 0 auto;
  }

  .hero-image img,
  .img-cobertura-aduana {
    max-width: 100%;
    margin-left: 0;
  }

  .brand-subtitle {
    font-size: 16px;
    text-align: center;
    padding-left: 0;
  }

  .export-title,
  .impo-expo-temp-text,
  .courier-title {
    font-size: 30px !important;
    text-align: center;
    margin-left: 0 !important;
  }

  .p-courier,
  .p-courier-2,
  .courier-text,
  .p-modulos,
  .list-export-import-temp li,
  .list-importacion li {
    text-align: center;
    margin-left: 0 !important;
  }
}

/* Añade esto al final de tu archivo CSS (styles(Services).css) */

/* Correcciones específicas para móvil */
@media (max-width: 767px) {
  /* 1. Ajuste del logo */
  .logo-brand {
    max-width: 40% !important;
    height: auto;
    margin: 0 auto 10px auto; /* Centrado y espacio inferior */
    display: block; /* Para que el margin auto funcione */
  }

  /* 2. Ajuste de la imagen de cabecera */
  .hero-image.images-service-1 img {
    margin: 50px auto 0 auto !important; /* 50px top y centrado */
    margin-right: 35px !important; /* Espacio derecho */
    width: 90%;
    max-width: 100%;
    display: block;
  }
  .hero-image.images-service-2 img {
    margin: 20px auto 0 auto !important; /* 50px top y centrado */
    margin-bottom: -20px;
    margin-right: 35px !important; /* Espacio derecho */
    margin-left: 50px !important; /* Espacio izquierdo */
    width: 130% !important;
    max-width: 150%;
    display: block;
  }
  .hero-image.export-img img {
  display: block !important;
  margin: 0 auto !important;
  margin-left: 50px !important;
  width: 100% !important;
  max-width: 120% !important;
  height: auto !important;
  padding: 0 !important;
}

  #img-export img {
  display: block !important;
  margin: 0 auto !important;
  /* margin-left: 50px !important; */
  width: 100% !important;
  max-width: 120% !important;
  height: auto !important;
  padding: 0 !important;
}

  /* 3. Centrado de textos con listas alineadas a izquierda */
  .hero-title-service-section,
  .h4-subtitle-1,
  .importacion-title,
  .export-title,
  .modulo-title,
  .cierre-modulo {
    text-align: center !important;
    margin-left: 10px !important;
    width: 100% !important;
  }

  #text-inicio-services{
    text-align: center !important;
    margin-left: 80px !important;
    width: 100% !important;
  }

  #export-mobile{
    text-align: center !important;
    margin-left: -30px !important;
    width: 100% !important;
  }

  .courier-text-wrapper{
    text-align: center !important;
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* Listas mantienen alineación izquierda pero contenedor centrado */
  .list-importacion,
  .list-export,
  .list-export-import-temp {
    display: inline-block;
    text-align: left !important;
    width: auto;
    max-width: 90%;
    margin: 0 auto !important;
    padding-left: 20px;
  }

  .import-list li {
    display: inline-block;
    text-align: left !important;
    width: 120%;
    max-width: 150%;
    margin: 0 auto !important;
    padding-right: 30px;
    padding-left: 20px !important;
  }
  


  /* 4. Ajuste del footer */
  .footer {
    text-align: center;
  }
  
  .footer .col-lg-3 {
    margin-bottom: 20px;
  }

  /* 5. Centrado de "Síguenos" */
  .social-links {
    justify-content: center !important;
  }

  /* Ajuste adicional para el subtítulo del logo */
  .brand-subtitle {
    text-align: center;
    padding-left: 0;
    white-space: normal;
    font-size: 14px;
    margin: 0 auto;
    display: block;
    width: 100%;
  }

  /* Ajuste para el contenedor de la cabecera */
  .hero-container.import {
    padding: 0 15px;
  }

  /* Ajuste para el texto de la cabecera */
  .hero-content.text-package {
    padding-right: 0;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  /* 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;
  }
}


/* 
 * Estilos EXCLUSIVOS para notebooks (14-17")
 * Rango: 1366px a 1920px 
 */
@media (min-width: 1366px) and (max-width: 1920px) {
  /* Ajuste general de contenedor principal */
  .container {
    max-width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Hero principal - mantenemos diseño pero con márgenes */
  .hero-modern .hero-container.import {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  /* Ajuste específico para la primera imagen */
  .hero-image.images-service-1 img {
    width: 150%;
    /* max-width: 600px; */
    margin-left: 350px !important;
  }
  
  /* Ajuste para sección de importaciones */
  .row.gy-4.align-items-start {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  /* Ajuste para imágenes en sección de servicios */
  .hero-image.images-service-2 img {
    width: 100%;
    max-width: 550px;
    margin-left: 40px !important;
  }
  
  /* Ajuste para sección de exportaciones */
  .export-img img {
    width: 100%;
    max-width: 500px;
    margin-left: 20px !important;
  }
  
  /* Ajuste para títulos principales */
  /* .hero-title-service-section, */
  .importacion-title,
  .export-title {
    font-size: 2.2rem !important;
    line-height: 1.3;
  }
  
  /* Ajuste para módulos de servicios */
  .services .row.gy-4 {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .service-item {
    padding: 15px;
  }
  
  /* Footer - márgenes consistentes */
  .footer .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  /* Ajuste fino para textos */
  .h4-subtitle-1,
  .courier-description,
  .p-modulos {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

