@font-face {
  font-family: 'KellySlab';
  src: url('../fonts/KellySlab-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'ExoMedium';
  src: url('../fonts/Exo-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


/********** Template CSS **********/
:root {
  --primary: #32b4e1;
  --secondary: #525368;
  --light: #E8F5E9;
  /* --dark: #0F4229;*/
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}


.titulo {
  font-size: 2.0em;
  /* Tamaño grande para destacar el título */
  font-weight: bold;
  /* Acentuar el peso de la fuente */
  color: #32b4e1;
  /* Color personalizado */
  letter-spacing: 2px;
  /* Espaciado entre letras */
  margin-top: 2px;
  /* Espacio en la parte superior */
  font-family: 'ExoMedium';
}

.subtitulo {
  color: #FFFFFF;
  padding-top: -12px;
  font-size: 35pt;

}

h1,
.h1,
h2,
.h2,
.fw-bold {
  font-weight: 700 !important;
  font-family: 'ExoMedium';

}

h3,
.h3,
h4,
.h4,
.fw-medium {
  font-weight: 600 !important;
  color: #ffffff;
  font-family: 'ExoMedium';
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
  font-weight: 500 !important;
  font-family: 'ExoMedium';
}

i {
  color: #32b4e1;
}

body {
  background-color: #262626;
  color: #FFFFFF;
  font-family: 'Gilroy-Regular';
}

/*Css btn*/
/**estilo boton**/
.btn_style {
  border-radius: 66px 66px 66px 66px;
  background: rgb(11, 11, 11);
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.9921218487394958) 0%, rgba(8, 4, 50, 0.9753151260504201) 68%, rgba(31, 31, 68, 1) 97%);
  color: #FFFFFF;
  border: 2px solid #32b4e1;
  font-weight: bold;
}

/* efecto todos los botones */
.btn_style:hover {
  color: #262626;
  background: rgb(50, 180, 225);
  background: linear-gradient(90deg, rgba(50, 180, 225, 0.7932422969187676) 0%, rgba(50, 180, 225, 1) 50%, rgba(50, 180, 225, 0.7932422969187676) 98%);
  font-weight: bold;
}


/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}


/*** Button ***/
.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--light);
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}


/*** Navbar ***/
.navbar {
  background-color: #000000;
  font-family: 'ExoMedium';
}

.navbar.sticky-top {
  top: -100px;
  transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
  height: 80px
}

.navbar .navbar-nav .nav-link {
  margin-right: 35px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: #32b4e1;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: .5s;
    opacity: 1;
  }
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(22, 22, 22, 0.6);
  z-index: 1;
}

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  background-color: #32b4e1;
  border: 10px solid #32b4e1;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}



/*--------------------------------------------------
SECCION DE BOTONES
--------------------------------------------------*/

/**
        * Button Section - Main Container
        * Creates a transparent container with appropriate spacing
        * and z-index to ensure buttons appear above other elements
        */
.button-section {
  background-image: url('../img/background.jpg');
  background-size: cover;
  padding: 30px 0;
  position: relative;
  z-index: 99;
}

/**
      * Button Container
      * Relative positioning container to handle the relationship
      * between the button and its overlapping icon
      */
.button-container {
  position: relative;
  height: 120px;
  margin-top: 1rem;
  margin-bottom: -2rem;
  /* This transition affects both the icon and button during hover */
  transition: all 0.3s ease-in-out;
}

/**
      * Button Container Hover Effect
      * When hovering over the container, the icon elements
      * move up by 10px for a subtle animation effect
      */
.button-container:hover .icon-overlay {
  transform: translateY(-10px);
}

/**
      * Base Button Styles
      * Common styles for both corporate and residential buttons
      */
.corporate-btn,
.residential-btn {
  position: relative;
  display: block;
  height: 80px;
  text-decoration: none;
  overflow: visible;
  /* Smooth transition for hover effects */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;

}

/**
      * Button Hover Effect
      * Slight upward movement and shadow on hover for a "lifting" effect
      */
.corporate-btn:hover,
.residential-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);

}

/**
      * Button Content Wrapper
      * Handles the internal layout of text within the button
      */
.btn-content {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  border: solid 5px #ffffff;
}

/**
      * Corporate Button Specific Styling
      * Blue background with rounded edges and padding for text
      */
.corporate-btn .btn-content {
  background-color: #32b4e1;
  border-radius: 45px;
  padding-left: 120px;
  /* Space for icon */
  padding-right: 20px;
  justify-content: flex-start;

}

/**
      * Residential Button Specific Styling
      * Same style as corporate but with padding reversed to accommodate
      * the icon on the right side
      */
.residential-btn .btn-content {
  background-color: #32b4e1;
  border-radius: 45px;
  padding-right: 120px;
  /* Space for icon */
  padding-left: 20px;
  justify-content: flex-start;
}

/**
      * Icon Overlay Base Styles
      * Positions icons above the buttons with negative top value
      * to create the overlapping effect
      */
.icon-overlay {
  position: absolute;
  top: -15px;
  /* Negative to make it overflow */
  z-index: 10;
  /* Smooth transition for hover animation */
  transition: transform 0.3s ease-in-out;
}

/**
      * Left Icon Positioning
      * Positions the corporate icon at the left edge
      */
.icon-overlay.left {
  left: -10px;
  /* Negative to make it overflow */
}

/**
      * Right Icon Positioning
      * Positions the residential icon at the right edge
      */
.icon-overlay.right {
  right: -10px;
  /* Negative to make it overflow */
}

/**
      * Plan Icon Styling
      * Size and display properties for the icons
      */
.plan-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

/**
      * Button Text Styling
      * Font styling for the text inside the buttons
      */
.plan-text {
  font-family: 'ExoMedium';
  color: white;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

/**
      * Responsive Adjustments for Medium Screens
      * Adjusts sizes and positions for tablets and small desktops
      */
@media (max-width: 767px) {

  /* Adjust button container height */
  .button-container {
    height: 70px;
    margin-top: 10px;
    margin-bottom: 0;
    /* Reduced bottom margin */
  }

  /* Residential button container specific margins in mobile */
  .residential-container {
    margin-bottom: -15px;
    /* Negative margin to reduce space below */
  }

  /* Add more bottom margin to the first button container on mobile */
  .col-md-6:first-child {
    margin-bottom: 45px !important;
    /* Reduced from 70px */
  }

  /* Ensure proper vertical spacing in the button section */
  .button-section {
    padding: 20px 0 10px;
    /* Reduced bottom padding */
  }

  /* Adjust button content height */
  .corporate-btn .btn-content,
  .residential-btn .btn-content {
    height: 70px;
  }

  /* Smaller text for medium screens */
  .plan-text {
    font-size: 16px;
  }

  /* Smaller icons for medium screens */
  .plan-icon {
    width: 90px;
    height: 90px;
  }

  /* Adjust icon position */
  .icon-overlay.left,
  .icon-overlay.right {
    top: -10px;
  }

  /* Smaller hover movement for icons */
  .button-container:hover .icon-overlay {
    transform: translateY(-7px);
  }
}

/**
      * Responsive Adjustments for Small Screens
      * Further adjustments for mobile devices
      */
@media (max-width: 576px) {

  /* More space for the smallest screens but reduced from previous */
  .col-md-6:first-child {
    margin-bottom: 28px !important;
    /* Reduced from 80px */
  }

  /* Residential button container specific margins in small mobile */
  .residential-container {
    margin-bottom: 30px;
    /* Even more negative margin for smallest screens */
  }

  /* Add more padding to the section to create more visual space */
  .button-section {
    padding: 15px 0 5px;
    /* Further reduced bottom padding */
  }

  /* Smaller button container */
  .button-container {
    height: 40px;
  }

  /* Smaller button height */
  .corporate-btn .btn-content,
  .residential-btn .btn-content {
    height: 60px;
  }

  /* Smaller text for mobile */
  .plan-text {
    font-size: 14px;
  }

  /* Adjust padding for left icon button */
  .corporate-btn .btn-content {
    padding-left: 90px;
    padding-right: 10px;
  }

  /* Adjust padding for right icon button */
  .residential-btn .btn-content {
    padding-right: 90px;
    padding-left: 10px;
  }

  /* Smaller icons for mobile */
  .plan-icon {
    width: 75px;
    height: 75px;
  }

  /* Adjust icon positioning for mobile */
  .icon-overlay.left,
  .icon-overlay.right {
    top: -8px;
  }

  /* Smaller hover movement for icons on mobile */
  .button-container:hover .icon-overlay {
    transform: translateY(-5px);
  }
}



/*--------------------------------------------------
RESIDENTIAL PLANS SECTION
--------------------------------------------------*/
/* Residential Plans Section Styles */
.residential-plans-section {
  background-image: url('../img/background-brillo.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
  color: white;
}

/* Section heading and subheading */
.plan-heading {
  font-family: 'ExoMedium';
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.plan-subheading {
  font-family: 'ExoMedium';
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.speed {
  color: #e83e8c;
  /* Purple-pink */
  font-weight: 700;
}

.stable {
  color: #32b4e1;
  /* Blue */
  font-weight: 700;
}

.and {
  color: white;
  font-weight: 700;
}

.secure {
  color: #4BB543;
  /* Green */
  font-weight: 700;
}

.plan-description {
  font-size: 16px;
  margin-bottom: 12px;
}

/* Free installation badge */
.free-badge {
  display: inline-block;
  /*background-color: #9333ea; /* Purple */
  background: rgb(90, 0, 125);
  background: linear-gradient(90deg, rgba(90, 0, 125, 1) 0%, rgba(185, 31, 249, 1) 60%, rgba(185, 31, 235, 1) 100%);
  color: white;
  font-weight: 700;
  font-size: 24px;
  padding: 3px 25px;
  border-radius: 10px;
  margin: 10px auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 180px;
  border: solid 3px #ffffff;
  /* Changed from white to purple */
  transition: box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
}

/* Add hover effect to free badge */
.free-badge:hover {
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.6);
  border: solid 3px #9333ea;
  /* Changed from white to purple */
}

/* Add a glow effect to free badge on hover */
.free-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 15px 5px rgba(147, 51, 234, 0.5);
}

.free-badge:hover::after {
  opacity: 1;
}

/* Plan cards */
.plan-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
  position: relative;
  border: 2px solid #9333ea;
  /* Changed from transparent to purple */
  width: 95%;
  max-width: 340px;
  margin: 0 auto;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
  border: 2px solid #9333ea;
  z-index: 10;
}

.plan-header {
  /*background-color: #9333ea; /* Purple */
  background: rgb(90, 0, 125);
  background: linear-gradient(90deg, rgba(90, 0, 125, 1) 0%, rgba(185, 31, 249, 1) 60%, rgba(185, 31, 235, 1) 100%);
  color: white;
  text-align: center;
  padding: 8px 5px;
  /* Reduced horizontal padding to ensure text fits */
  font-size: 20px;
  /* Adjusted from 22px to balance with other elements */
  font-weight: 700;
  font-family: 'ExoMedium';
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  letter-spacing: -0.5px;
  /* Slight negative letter spacing to help with space */
}

.plan-content {
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

/* Speed gauge circle */
.speed-gauge {
  margin: 5px auto;
  position: relative;
  width: 110px;
  height: 110px;
}

.gauge-icon {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/* Hide the animated gauge by default but keep it positioned correctly */
.animated-gauge {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show animated gauge on hover */
.plan-card:hover .animated-gauge {
  opacity: 1;
}

.plan-card:hover .static-gauge {
  opacity: 0;
}

.plan-speed {
  color: #32b4e1;
  /* Blue */
  font-size: 24px;
  /* Adjusted from 26px to fit better in single line */
  font-weight: 700;
  position: relative;
  z-index: 2;
  margin-top: 85px;
  margin-bottom: 0;
  white-space: nowrap;
  /* Ensure it stays on one line */
}

/* Features list */
.plan-features {
  margin: 8px 0;
  flex-grow: 1;
  color: #333;
  font-size: 15px;
  /* Adjusted from 15px for better balance */
  line-height: 1.3;
  /* Tighter line height */
}

.plan-features p {
  margin-bottom: 0;
  font-family: 'ExoMedium';
}

/* Larger check icon */
.feature-check {
  width: 30px;
  /* Increased from 16px */
  height: 30px;
  /* Increased from 16px */
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -3px;
}

/* Activate button */
.activate-plan-btn {
  /* background-color: #9333ea; /* Purple */
  background: rgb(90, 0, 125);
  background: linear-gradient(90deg, rgba(90, 0, 125, 1) 0%, rgba(185, 31, 249, 1) 60%, rgba(185, 31, 235, 1) 100%);
  color: white;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 0;
  margin-top: auto;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 17px;
  /* Adjusted from 18px for better balance */
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  z-index: 2;
  letter-spacing: 0;
  /* Reduce letter spacing slightly */
  text-decoration: none;
  white-space: nowrap;
  /* Ensure text stays on one line */
}

.activate-plan-btn:hover {
  background-color: #7b28c7;
  color: white;
  text-decoration: none;
}

.plan-card:hover .activate-plan-btn {
  background-color: #7711c7;
  font-weight: 900;
  letter-spacing: 1px;
}

/* Speed counter effect */
.speed-counter {
  transition: color 0.3s ease;
}

.plan-card:hover .speed-counter {
  color: #32b4e1;
  text-shadow: 0 0 5px rgba(50, 180, 225, 0.3);
  font-weight: 900;
}

/* Reduce spacing between columns */
.container .row.g-2>[class*="col-"] {
  padding-right: 4px;
  padding-left: 4px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .plan-heading {
    font-size: 26px;
  }

  .plan-subheading {
    font-size: 28px;
  }

  .plan-card {
    width: 100%;
  }

  .plan-speed {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .col-md-4 {
    margin-bottom: 20px;
  }

  .plan-heading {
    font-size: 24px;
  }

  .plan-subheading {
    font-size: 26px;
  }

  .plan-description {
    font-size: 15px;
  }

  .free-badge {
    font-size: 20px;
    width: 160px;
  }

  .plan-header {
    font-size: 18px;
  }

  .activate-plan-btn {
    font-size: 16px;
  }

  .feature-check {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 575.98px) {
  .residential-plans-section {
    padding: 30px 0;
  }

  .plan-heading {
    font-size: 20px;
  }

  .plan-subheading {
    font-size: 22px;
  }

  .plan-description {
    font-size: 14px;
    padding: 0 15px;
  }

  .free-badge {
    font-size: 18px;
    padding: 3px 15px;
    width: 140px;
  }

  .plan-header {
    font-size: 17px;
    letter-spacing: -0.5px;
  }

  .plan-speed {
    font-size: 20px;
  }

  .activate-plan-btn {
    font-size: 15px;
    padding: 7px;
  }

  .plan-features {
    font-size: 13px;
  }

  .feature-check {
    width: 16px;
    height: 16px;
  }
}


/*--------------------------------------------------
SMART SERVICES SECTION
--------------------------------------------------*/


/* Smart Services Section Styles */
.smart-services-section {
  position: relative;
  height: 100vh;
  min-height: 800px;
  background-image: url('../img/background_smart_services.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Base styles for both boxes - WIDER AND LESS TALL */
.smart-wifi-box,
.smart-vision-box {
  position: absolute;
  width: 520px;
  /* Increased width from original */
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 174, 239, 0.6);
  z-index: 5;
  border: 2px solid #32b4e1;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

/* WiFi Box - Top Left */
.smart-wifi-box {
  top: 15%;
  left: 5%;
  opacity: 0;
  transform: translateX(-100%);
}

/* Vision Box - Bottom Right */
.smart-vision-box {
  bottom: 15%;
  right: 5%;
  opacity: 0;
  transform: translateX(100%);
}

/* Package Headers - LESS TALL */
.package-header {
  background-color: #32b4e1;
  color: white;
  font-family: 'ExoMedium';
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  /* Reduced from 15px */
}

/* Package Content with transparency - LESS TALL */
.package-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 15px;
  /* Reduced from 20px 15px */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

/* Package Subtitle - REDUCED MARGINS */
.package-subtitle {
  font-family: 'ExoMedium';
  font-size: 22px;
  text-align: center;
  margin-bottom: 15px;
  /* Reduced from 25px */
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Features Layout */
.features-container {
  display: flex;
  justify-content: space-around;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Individual Feature - MORE HORIZONTAL SPACE */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 15px;
  /* Added padding for wider boxes */
}

/* Feature Icon - SMALLER TO MAKE BOX LESS TALL */
.feature-icon {
  width: 60px;
  /* Reduced from 65px */
  height: 60px;
  /* Reduced from 65px */
  margin-bottom: 8px;
  /* Reduced from 12px */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Feature Icon Image */
.feature-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: brightness(1.2) drop-shadow(0 0 8px rgba(50, 180, 225, 0.6));
}

/* Feature Text */
.feature-text {
  font-family: 'ExoMedium';
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Animation keyframes for slide-in effects */
@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

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

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

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

/* Responsive Adjustments */
@media (max-width: 1199.98px) {

  .smart-wifi-box,
  .smart-vision-box {
    width: 450px;
    /* Adjusted for smaller screens while keeping wider */
  }
}

@media (max-width: 991.98px) {

  .smart-wifi-box,
  .smart-vision-box {
    width: 400px;
    /* Adjusted for even smaller screens */
  }

  .package-header {
    font-size: 24px;
    padding: 10px;
  }

  .package-subtitle {
    font-size: 20px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 767.98px) {
  .smart-services-section {
    height: auto;
    min-height: 700px;
    padding: 30px 0;
  }

  .smart-wifi-box,
  .smart-vision-box {
    position: relative;
    width: 90%;
    max-width: 500px;
    /* Increased max-width */
    margin: 20px auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    opacity: 1;
  }

  .smart-wifi-box {
    margin-bottom: 30px;
    /* Reduced from 40px */
  }

  .feature-text {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .package-header {
    font-size: 22px;
    padding: 10px;
  }

  .package-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 8px;
  }

  .feature-text {
    font-size: 14px;
  }
}



/*--------------------------------------------------
CORPORATE PLANS SECTION
--------------------------------------------------*/

/* Blue Corporate Plans Section Styles - Updated for Equal Heights */
.blue-corporate-plans-section {
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
  color: white;
}

/* Blue corporate specific styling */
.blue-badge {
  background: rgb(40, 75, 255);
  background: linear-gradient(90deg, rgba(40, 75, 255, 1) 0%, rgba(110, 195, 210, 1) 60%);
  border: solid 3px #ffffff;
}

.blue-badge:hover {
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
  border: solid 3px #2196f3;
}

.blue-badge::after {
  box-shadow: 0 0 15px 5px rgba(33, 150, 243, 0.5);
}

/* Blue corporate card styling with fixed height */
.blue-corporate-card {
  border: 2px solid #2196f3;
  height: 320px;
  /* Reduced fixed height for all cards */
}

.blue-corporate-card:hover {
  box-shadow: 0 10px 20px rgba(33, 150, 243, 0.3);
  border: 2px solid #2196f3;
}

.blue-corporate-header {
  background: rgb(40, 75, 255);
  background: linear-gradient(90deg, rgba(40, 75, 255, 1) 0%, rgba(110, 195, 210, 1) 60%);
}

.blue-corporate-btn {
  background: rgb(40, 75, 255);
  background: linear-gradient(90deg, rgba(40, 75, 255, 1) 0%, rgba(110, 195, 210, 1) 60%);
}

.blue-corporate-btn:hover {
  background-color: #1976d2;
}

.blue-corporate-card:hover .blue-corporate-btn {
  background-color: #1565c0;
  font-weight: 900;
  letter-spacing: 1px;
}

/* Content sizing for equal heights */
.blue-corporate-plans-section .plan-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-height: 210px;
  /* Reduced minimum content height */
}

.blue-corporate-plans-section .plan-features {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  /* Reduced fixed height for feature text */
  overflow: hidden;
  /* Prevent overflow */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .blue-corporate-plans-section .plan-heading {
    font-size: 26px;
  }

  .blue-corporate-plans-section .plan-subheading {
    font-size: 22px;
    color: #ffffff;
  }
}

@media (max-width: 767.98px) {
  .blue-corporate-plans-section .plan-heading {
    font-size: 24px;
  }

  .blue-corporate-plans-section .plan-subheading {
    font-size: 20px;
    color: #ffffff;
  }

  /* Maintain fixed height on mobile */
  .blue-corporate-card {
    height: 320px;
  }

  .blue-corporate-plans-section .plan-content {
    min-height: 210px;
  }
}

@media (max-width: 575.98px) {
  .blue-corporate-plans-section {
    padding: 30px 0;
  }

  .blue-corporate-plans-section .plan-heading {
    font-size: 20px;
  }

  .blue-corporate-plans-section .plan-subheading {
    font-size: 18px;
    color: #ffffff;
  }
}

/*--------------------------------------------------
PYMES PLANS SECTION
--------------------------------------------------*/


/* Green Corporate Plans Section Styles */
.green-corporate-plans-section {
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
  color: white;
}

.green-corporate-plans-section .plan-heading,
.green-corporate-plans-section .plan-subheading {
  font-family: 'ExoMedium';
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.green-corporate-plans-section .plan-heading {
  font-size: 32px;
}

.green-corporate-plans-section .plan-subheading {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.green-corporate-plans-section .highlight-text {
  font-weight: 900;
  letter-spacing: 1px;
}

/* Green specific styling */
.green-badge {
  display: inline-block;
  background: rgb(55, 145, 65);
  background: linear-gradient(90deg, rgba(55, 145, 65, 1) 0%, rgba(85, 255, 110, 1) 60%);
  color: white;
  font-weight: 700;
  font-size: 24px;
  padding: 3px 25px;
  border-radius: 10px;
  margin: 10px auto 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  width: 180px;
  border: solid 3px #ffffff;
  transition: box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
}

.green-badge:hover {
  box-shadow: 0 0 20px rgba(29, 218, 115, 0.6);
  border: solid 3px #1dda73;
}

.green-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 0 15px 5px rgba(29, 218, 115, 0.5);
}

.green-badge:hover::after {
  opacity: 1;
}

/* Green card styling */
.green-corporate-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.3s ease;
  position: relative;
  border: 2px solid #1dda73;
  width: 95%;
  max-width: 340px;
  margin: 0 auto;
  height: 340px;
  /* Reduced fixed height for all cards */
}

.green-corporate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(29, 218, 115, 0.3);
  border: 2px solid #1dda73;
  z-index: 10;
}

.green-corporate-header {
  background: rgb(55, 145, 65);
  background: linear-gradient(90deg, rgba(55, 145, 65, 1) 0%, rgba(85, 255, 110, 1) 60%);
  color: white;
  text-align: center;
  padding: 8px 5px;
  font-size: 20px;
  font-weight: 700;
  font-family: 'ExoMedium';
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  letter-spacing: -0.5px;
}

.green-corporate-btn {
  background: rgb(55, 145, 65);
  background: linear-gradient(90deg, rgba(55, 145, 65, 1) 0%, rgba(85, 255, 110, 1) 60%);
  color: white;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 0;
  margin-top: auto;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 17px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  position: relative;
  z-index: 2;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.green-corporate-btn:hover {
  background-color: #0c9351;
  color: white;
  text-decoration: none;
}

.green-corporate-card:hover .green-corporate-btn {
  background-color: #088645;
  font-weight: 900;
  letter-spacing: 1px;
}

.green-corporate-card:hover .speed-counter {
  color: #32b4e1;
  text-shadow: 0 0 5px rgba(29, 218, 115, 0.3);
  font-weight: 900;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .green-corporate-plans-section .plan-heading {
    font-size: 28px;
  }

  .green-corporate-plans-section .plan-subheading {
    font-size: 24px;
  }

  .green-corporate-card {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .col-md-4 {
    margin-bottom: 20px;
  }

  .green-corporate-plans-section .plan-heading {
    font-size: 24px;
  }

  .green-corporate-plans-section .plan-subheading {
    font-size: 22px;
  }

  .green-badge {
    font-size: 20px;
    width: 160px;
  }

  .green-corporate-header {
    font-size: 18px;
  }

  .green-corporate-btn {
    font-size: 16px;
  }

  /* Maintain fixed height on mobile */
  .green-corporate-card {
    height: 340px;
  }

  .green-corporate-plans-section .plan-content {
    min-height: 230px;
  }
}

@media (max-width: 575.98px) {
  .green-corporate-plans-section {
    padding: 30px 0;
  }

  .green-corporate-plans-section .plan-heading {
    font-size: 20px;
  }

  .green-corporate-plans-section .plan-subheading {
    font-size: 18px;
  }

  .green-badge {
    font-size: 18px;
    padding: 3px 15px;
    width: 140px;
  }

  .green-corporate-header {
    font-size: 17px;
    letter-spacing: -0.5px;
  }

  .green-corporate-btn {
    font-size: 15px;
    padding: 7px;
  }
}

/*--------------------------------------------------
ECO SERVICES SECTION
--------------------------------------------------*/

/* ECO Networks Services Section Styles */
.eco-services-section {
  position: relative;
  background-image: url('../img/background-servicios-eco.jpg');
  background-color: #000;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.eco-heading {
  font-family: 'ExoMedium';
  font-size: 42px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}



/* Service Box Styles */
.service-box-container {
  display: flex;
  justify-content: center;
}

.eco-service-box {
  width: 100%;
  max-width: 480px;
  border-radius: 30px;
  overflow: hidden;
  border: 3px solid #32b4e1;
  box-shadow: 0 0 20px rgba(50, 180, 225, 0.5);
  margin-bottom: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  opacity: 0;
  transform: translateX(-100%);
}

.eco-service-box.visible {
  opacity: 1;
  transform: translateX(0);
}


.service-header {
  background-color: #32b4e1;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 28px;
  font-weight: 700;
  font-family: 'ExoMedium';
}

.service-content {
  background-color: rgba(0, 0, 0, 0);
  padding: 25px 20px;
}

.service-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5px;
  font-family: 'ExoMedium';
}

.service-subtitle {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'ExoMedium';
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-item {
  display: flex;
  align-items: center;
  /* transition: transform 0.3s ease;*/
}

.service-item .service-text {
  background-color: rgba(0, 0, 0, 0);
}

.service-item:hover .service-text {
  background-color: rgba(0, 0, 0, 0);
}

/*.service-item:hover {
transform: translateX(10px);
}*/

.service-icon {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}

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

.service-text {
  font-size: 18px;
  font-weight: 500;
  font-family: 'ExoMedium';
}

/* Info Container Styles */
.info-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-content {
  text-align: center;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.info-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.info-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: 'ExoMedium';
  line-height: 1.3;
}

.info-btn {
  background-color: #32b4e1;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  font-family: 'ExoMedium';
  cursor: pointer;
}

.info-btn:hover {
  background-color: #2a9ac3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(50, 180, 225, 0.5);
}

/* Icons Container Styles */
.icons-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.eco-icon {
  width: 130px;
  height: 130px;
  transition: transform 0.3s ease;
  position: relative;
}

.eco-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease;
}

.eco-icon .default-icon {
  opacity: 1;
}

.eco-icon .hover-icon {
  opacity: 0;
}

.eco-icon:hover {
  transform: scale(1.1);
}

.eco-icon:hover .default-icon {
  opacity: 0;
}

.eco-icon:hover .hover-icon {
  opacity: 1;
}

/* Slide In Animation */
.slide-in-element {
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.slide-in-element.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Modal Styles */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  background: transparent;
  margin: 10% auto;
  padding: 0;
  width: 60%;
  max-width: 450px;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(50, 180, 225, 0.6);
  animation: modalFadeIn 0.5s;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.close-btn:hover {
  color: #32b4e1;
}

.contact-form-container {
  background-color: #000;
  /*  background-image: url('img/ICONO\ METALINK-32.png');
background-size: cover;*/
  border: 3px solid #32b4e1;
  border-radius: 30px;
  padding: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: white;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'ExoMedium';
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: rgba(70, 70, 70, 0.7);
  border: none;
  border-radius: 5px;
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid #32b4e1;
  background-color: rgba(80, 80, 80, 0.8);
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.submit-btn,
.cancel-btn {
  padding: 8px 25px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: 'ExoMedium';
  transition: all 0.3s ease;
}

.submit-btn {
  background-color: #32b4e1;
  color: white;
}

.submit-btn:hover {
  background-color: #2a9ac3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(50, 180, 225, 0.5);
}

.cancel-btn {
  background-color: #32b4e1;
  color: white;
}

.cancel-btn:hover {
  background-color: #2a9ac3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(50, 180, 225, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .eco-heading {
    font-size: 36px;
  }

  .service-header {
    font-size: 24px;
  }

  .service-title {
    font-size: 22px;
  }

  .info-title {
    font-size: 22px;
  }

  .eco-icon {
    width: 100px;
    height: 100px;
  }

  .icon-row {
    gap: 20px;
  }

  .modal-content {
    width: 80%;
  }
}

@media (max-width: 767px) {
  .eco-heading {
    font-size: 30px;
  }

  .info-content {
    margin-top: 30px;
  }

  .eco-icon {
    width: 116px;
    height: 116px;
  }

  .icon-row {
    gap: 15px;
  }

  .modal-content {
    width: 90%;
    margin: 10% auto;
  }
}

@media (max-width: 575px) {
  .eco-heading {
    font-size: 26px;
  }

  .service-header {
    font-size: 20px;
    padding: 10px;
  }

  .service-title {
    font-size: 18px;
  }

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

  .service-text {
    font-size: 16px;
  }

  .info-title {
    font-size: 18px;
  }

  .info-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .form-actions {
    flex-direction: column;
    gap: 10px;
  }

  .submit-btn,
  .cancel-btn {
    width: 100%;
  }
}

/*--------------------------------------------------
BENEFITS SECTION
--------------------------------------------------*/

/* Benefits Section Styles */
.benefits-section {
  position: relative;
  background-image: url('../img/background-beneficios.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.benefits-section .container {
  padding-top: 46vh;
  /* Posiciona el contenido debajo de la barbilla de la mujer */
  z-index: 2;
}

.benefits-heading {
  font-family: 'ExoMedium';
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  margin-top: -265px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.benefits-section.visible .benefits-heading {
  opacity: 1;
  transform: translateY(0);
}

.benefits-container {
  margin-bottom: 30px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-icon {
  flex-shrink: 0;
  width: 60px;
  height: 45px;
  margin-right: 20px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
}

.benefit-text {
  font-family: 'ExoMedium';
  font-size: 29px;
  font-weight: 500;
  line-height: 1.2;
}

.contact-btn {
  background-color: #32b4e1;
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 18px;
  padding: 12px 40px;
  transition: all 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
  box-shadow: 0 0 10px rgba(50, 180, 225, 0.5);
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'ExoMedium';
  display: inline-block;
}

.contact-btn:hover {
  background-color: #2a9ac3;
  transform: translateY(-3px) !important;
  box-shadow: 0 5px 15px rgba(50, 180, 225, 0.7);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .benefits-section .container {
    padding-top: 40vh;
  }

  .benefits-heading {
    font-size: 32px;
    margin-top: -90px;

  }
}

@media (max-width: 767px) {
  .benefits-section .container {
    padding-top: 35vh;
  }

  .benefits-heading {
    font-size: 28px;
  }

  .benefit-text {
    font-size: 20px;
  }

  .contact-btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .benefits-section .container {
    padding-top: 30vh;
  }

  .benefits-heading {
    font-size: 24px;
  }

  .benefit-text {
    font-size: 18px;
  }

  .benefit-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }
}


/*--------------------------------------------------
FOOTER SECTION
--------------------------------------------------*/


/* Footer Section Styles - Complete with White Social Icons */
.footer-section {
  background-color: #000000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95)), url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

/* Logo styling */
.footer-logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-logo {
  height: 150px;
  margin-bottom: 0;
}

/* Title styling for both sections */
.footer-title {
  font-family: 'ExoMedium';
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

/* Contact items styling */
.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: white;
}

.footer-contact-item i {
  color: #32b4e1;
  margin-right: 15px;
  width: 20px;
  text-align: center;
}

.footer-contact-item span {
  font-size: 16px;
  font-family: 'ExoMedium';
}

/* Links styling */
.footer-link-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-link-item i {
  color: #32b4e1;
  margin-right: 15px;
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.footer-link-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 16px;
  font-family: 'ExoMedium';
}

.footer-link-item a:hover {
  color: #32b4e1;
}

/* Social media styling - centered with white icons */
.footer-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  /* Center icons horizontally */
  margin-top: 20px;
  /* Add space above icons */
  margin-bottom: 10px;
  /* Add space below icons */
}

.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #32b4e1;
  border-radius: 50%;
  color: white !important;
  /* Ensure icon color is white */
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-circle i {
  color: white !important;
  /* Force icons to be white */
  font-size: 16px;
  /* Adjust icon size for better visibility */
}

.social-circle:hover {
  background-color: #2590b7;
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(50, 180, 225, 0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .footer-logo {
    height: 100px;
  }

  .footer-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .footer-section {
    text-align: center;
    padding: 40px 0;
  }

  .footer-logo-container {
    justify-content: center;
    margin-bottom: 30px;
  }

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

  .footer-contact-item,
  .footer-link-item {
    justify-content: center;
  }

  .col-md-4 {
    width: 100%;
  }

  .footer-social {
    margin-top: 15px;
  }

  .social-circle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 575px) {
  .footer-logo {
    height: 80px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-contact-item span,
  .footer-link-item a {
    font-size: 15px;
  }
}


/*--------------------------------------------------
WHATSAPP BTN SECTION
--------------------------------------------------*/

/* Estilos para el botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 90px;
  /* Posicionado justo encima del botón Back to Top */
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  border-radius: 5%;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);*/
  transition: all 0.3s ease;
}


.whatsapp-icon {
  animation: pulse 2s infinite;
}

/* Modificación del botón Back to Top */
.back-to-top {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  bottom: 20px;
  right: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 767px) {
  .whatsapp-button {
    bottom: 80px;
    /* Ajustado para mobile */
    right: 15px;
  }

  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
  }
}


/* Cambio de color a blanco cuando se hace hover */
.back-to-top:hover i {
  color: #ffffff; /* Cambia a blanco al hacer hover */
}


/* Estilos base para el botón ECO Networks */
.eco-networks-btn {
  background-color: #32b4e1;
  color: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  
}

/* Efecto hover en escritorio */
.eco-networks-btn:hover {
  background-color: #2a99c0;
  color: #ffffff;
}

/* Media query para tablets */
@media (max-width: 992px) {
  .eco-networks-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .eco-networks-btn:hover {
    background-color: transparent;
    color: #32b4e1;
    border: 1px solid #32b4e1;
  }
}

/* Media query para móviles */
@media (max-width: 768px) {
  .eco-networks-btn {
    background-color: transparent;
    color: #32b4e1;
    border: 1px solid #32b4e1;
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .eco-networks-btn:hover, 
  .eco-networks-btn:active,
  .eco-networks-btn:focus {
    background-color: transparent;
    color: #32b4e1;
    border-color: #32b4e1;
    opacity: 0.8;
  }
  
  .eco-networks-btn i {
    font-size: 12px;
  }
}

/* Media query para dispositivos muy pequeños */
@media (max-width: 480px) {
  .eco-networks-btn {
    width: 100%;
    text-align: center;
    padding: 8px 15px;
    font-size: 16px;
  }
}

/* Estilos específicos para comportamiento táctil */
@media (pointer: coarse) {
  .eco-networks-btn:active {
    background-color: transparent;
    color: #32b4e1;
    transform: scale(0.98);
  }
}