/* ===== ESTILOS GENERALES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

/* ===== NAVEGACIÓN ===== */
.navbar {
  background-color: #1E1E1E !important;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0394FD !important;
}

.phone-number {
  color: #fff !important;
  font-weight: bold;
  font-size: 1.1rem;
}

.phone-number i {
  color: #0394FD;
  margin-right: 5px;
}

/* ===== ESTILOS PARA MENÚS DESPLEGABLES MULTINIVEL ===== */
.dropdown-menu {
  background-color: #2d2d2d;
  border: none;
  border-radius: 5px;
  padding: 10px 0;
}

.dropdown-item {
  color: #fff !important;
  padding: 8px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #0394FD;
  color: #fff !important;
}

.dropdown-toggle::after {
  margin-left: auto;
  float: right;
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropdown-menu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -10px;
  margin-left: 0;
  border-radius: 0 5px 5px 5px;
}

.dropdown:hover>.dropdown-menu,
.dropend:hover>.dropdown-menu {
  display: block;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px !important;
    border-radius: 8px;
    margin-bottom: 5px;
    font-size: 1.1rem;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(3, 148, 253, 0.1);
  }

  .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.05) !important;
    margin: 5px 0 10px 0 !important;
    padding: 0 !important;
    border: none !important;
    border-left: 2px solid rgba(3, 148, 253, 0) !important;
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease, background-color 0.4s ease;
    visibility: hidden;
    position: static !important;
    /* Force vertical flow */
    transform: none !important;
    /* Remove any Bootstrap absolute positioning */
    float: none !important;
    width: 100% !important;
  }

  .dropdown-menu.show {
    max-height: 500px;
    /* Adjust based on content */
    visibility: visible;
    border-left-color: rgba(3, 148, 253, 0.8) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
    margin-bottom: 15px !important;
  }

  .dropdown-item {
    padding: 10px 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
  }

  .dropdown-item:hover,
  .dropdown-item:active {
    background: rgba(3, 148, 253, 0.1) !important;
    color: #fff !important;
    padding-left: 25px !important;
  }

  .nav-item.dropdown {
    transition: background-color 0.3s ease;
    border-radius: 10px;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .nav-item.dropdown:has(.show) {
    background: rgba(255, 255, 255, 0.05);
  }

  .dropdown-toggle::after {
    transition: transform 0.3s ease;
  }

  .dropdown-toggle.show::after {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item.dropdown-toggle::after {
  content: "›";
  border: none;
  font-size: 1.2em;
  margin-left: 5px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 10px 15px !important;
}

.navbar-nav .nav-link.active {
  color: #0394FD !important;
  font-weight: bold;
}

/* ===== HERO SECTION - CARRUSEL ===== */
.carousel-item {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.carousel-item img {
  object-fit: cover;
  height: 100%;
  filter: brightness(0.7);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 80%;
}

.carousel-caption h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #fff;
}

.carousel-caption p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
}

.carousel-caption .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* ===== SECCIÓN SERVICIOS - TARJETAS ===== */
#servicios-cards {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0394FD, #0057E2);
  transition: left 0.4s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0057E2, #0057E2);
}

.card-icon i {
  font-size: 2rem;
  color: #fff;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1E1E1E;
  line-height: 1.3;
}

.service-card p {
  color: #717B82;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.card-arrow {
  font-size: 1.5rem;
  color: #0394FD;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-card:hover .card-arrow {
  transform: translateX(5px);
  color: #0057E2;
}

/* ===== SECCIÓN ESPECIALISTAS ===== */
#especialistas {
  padding: 100px 0;
  background: #ffffff;
}

#especialistas h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1E1E1E;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#especialistas .lead {
  font-size: 1.3rem;
  color: #0394FD;
  font-weight: 500;
}

/* ===== CONTENEDOR DE PESTAÑAS HORIZONTALES ===== */
.features-tabs-container {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.tab-buttons-horizontal {
  display: flex;
  border-bottom: 3px solid #f0f0f0;
}

.tab-btn-horizontal {
  flex: 1;
  background: none;
  border: none;
  padding: 25px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 600;
  color: #717B82;
  position: relative;
  font-size: 1rem;
}

.tab-btn-horizontal:hover {
  background: #f8f9fa;
  color: #0394FD;
}

.tab-btn-horizontal.active {
  color: #0394FD;
  background: #f8f9fa;
}

.tab-btn-horizontal.active::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #0394FD;
}

.tab-btn-horizontal i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.tab-btn-horizontal.active i {
  color: #0394FD;
  transform: scale(1.1);
}

.tab-content-horizontal {
  padding: 40px 30px;
  min-height: 400px;
}

.tab-pane-horizontal {
  display: none;
  animation: slideIn 0.5s ease-in-out;
}

.tab-pane-horizontal.active {
  display: block;
}

.tab-text-content h4 {
  color: #1E1E1E;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-left: 4px solid #0394FD;
  padding-left: 15px;
}

.tab-text-content p {
  color: #717B82;
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.tab-text-content ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.tab-text-content ul li {
  padding: 10px 0;
  padding-left: 35px;
  position: relative;
  color: #1E1E1E;
  font-size: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.tab-text-content ul li:last-child {
  border-bottom: none;
}

.tab-text-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #0394FD;
  font-weight: bold;
  font-size: 1.2rem;
  background: #e3f2fd;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-conclusion {
  background: #e3f2fd;
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #0394FD;
  font-weight: 500;
  margin-top: 20px !important;
}

/* ===== IMAGEN DE ESPECIALISTAS ===== */
.especialistas-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  min-height: 500px;
}

.especialistas-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.especialistas-image:hover img {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px;
  color: #fff;
}

.stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.stat-item h4 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #0394FD;
}

.stat-item span {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 500;
}

/* ===== SECCIÓN ¿POR QUÉ ESCOGERNOS? ===== */
.why-choose-us-section {
  background: #fff;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 40px;
}

.why-choose-us-section h3 {
  font-size: 2rem;
  color: #1E1E1E;
  font-weight: bold;
  text-transform: uppercase;
}

.why-choose-text {
  color: #717B82;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.btns-group-center {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btns-group-center .btn {
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btns-group-center .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tab-btn-horizontal {
  position: relative;
  overflow: hidden;
}

.tab-btn-horizontal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(3, 148, 253, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  transform: translate(-50%, -50%);
}

.tab-btn-horizontal:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

@media (max-width: 992px) {
  .features-tabs-container {
    margin-bottom: 40px;
  }

  .tab-buttons-horizontal {
    flex-direction: column;
  }

  .tab-btn-horizontal {
    padding: 20px;
    justify-content: flex-start;
  }

  .tab-content-horizontal {
    padding: 30px 20px;
    min-height: auto;
  }

  .especialistas-image {
    min-height: 400px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  #especialistas {
    padding: 60px 0;
  }

  #especialistas h2 {
    font-size: 2rem;
  }

  #especialistas .lead {
    font-size: 1.1rem;
  }

  .tab-text-content h4 {
    font-size: 1.2rem;
  }

  .tab-text-content ul li {
    padding-left: 30px;
    font-size: 0.95rem;
  }

  .why-choose-us-section {
    padding: 30px 20px;
  }

  .why-choose-us-section h3 {
    font-size: 1.5rem;
  }

  .why-choose-text {
    font-size: 1rem;
  }

  .btns-group-center {
    flex-direction: column;
    align-items: center;
  }

  .btns-group-center .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .tab-btn-horizontal {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 15px;
  }

  .tab-btn-horizontal span {
    font-size: 0.9rem;
  }

  .tab-content-horizontal {
    padding: 20px 15px;
  }

  .especialistas-image {
    min-height: 300px;
  }

  .stat-item h4 {
    font-size: 1.8rem;
  }
}

/* ===== SECCIÓN RENTABILIDAD ===== */
#rentabilidad {
  padding: 60px 0;
  background: linear-gradient(135deg, #717B82 0%, #1E1E1E 100%);
  position: relative;
  overflow: hidden;
}

#rentabilidad::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230394FD" opacity="0.03"><circle cx="50" cy="50" r="2"/></svg>') repeat;
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100px, -100px);
  }
}

#rentabilidad h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #0394FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#rentabilidad .lead {
  font-size: 1.3rem;
  opacity: 0.8;
}

.rentabilidad-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.rentabilidad-card:hover {
  transform: translateY(-5px);
}

.card-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-icon-large i {
  font-size: 2.5rem;
  color: #fff;
}

.rentabilidad-card h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.rentabilidad-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 25px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.feature-item i {
  color: #0394FD;
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.rentabilidad-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rentabilidad-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rentabilidad-image:hover img {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  padding: 10px 15px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 0.9rem;
}

.cost-optimization-features {
  margin-top: 25px;
}

.optimization-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.optimization-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.optimization-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.optimization-header:hover {
  background: rgba(255, 255, 255, 0.05);
}

.optimization-header i {
  font-size: 1.5rem;
  color: #0394FD;
  width: 40px;
}

.optimization-header h4 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
  flex: 1;
  color: #fff;
}

.optimization-arrow {
  font-size: 1.5rem;
  color: #0394FD;
  transition: transform 0.3s ease;
}

.optimization-item.active .optimization-arrow {
  transform: rotate(90deg);
}

.optimization-content {
  padding: 0 20px 20px 85px;
  display: none;
}

.optimization-item.active .optimization-content {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.optimization-content p {
  margin-bottom: 15px;
  opacity: 0.9;
}

.optimization-content ul {
  list-style: none;
  padding: 0;
}

.optimization-content ul li {
  padding: 5px 0;
  padding-left: 20px;
  position: relative;
  opacity: 0.9;
}

.optimization-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #0394FD;
  font-weight: bold;
}

.real-time-location {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 50px 30px;
  margin-top: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.real-time-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.real-time-icon i {
  font-size: 3rem;
  color: #fff;
}

.real-time-location h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.real-time-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.real-time-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.real-time-stats .stat {
  text-align: center;
}

.real-time-stats .stat h4 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0394FD;
  margin-bottom: 5px;
}

.real-time-stats .stat span {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 992px) {
  #rentabilidad h2 {
    font-size: 2.5rem;
  }

  .rentabilidad-card {
    padding: 30px;
    margin-bottom: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .optimization-content {
    padding: 0 20px 20px 20px;
  }

  .real-time-stats {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #rentabilidad {
    padding: 60px 0;
  }

  #rentabilidad h2 {
    font-size: 2rem;
  }

  .rentabilidad-card h3 {
    font-size: 1.5rem;
  }

  .optimization-header {
    padding: 15px;
  }

  .optimization-header h4 {
    font-size: 1.1rem;
  }

  .real-time-location {
    padding: 30px 20px;
  }

  .real-time-location h3 {
    font-size: 1.8rem;
  }

  .real-time-stats {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .rentabilidad-card {
    padding: 20px;
  }

  .card-icon-large {
    width: 60px;
    height: 60px;
  }

  .card-icon-large i {
    font-size: 2rem;
  }

  .optimization-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .optimization-header i {
    width: auto;
  }
}

/* ===== SECCIÓN SOLICITUD DE LLAMADA ===== */
#solicita-llamada {
  padding: 30px 0;
  background: linear-gradient(135deg, #0394FD 0%, #0057E2 100%);
  position: relative;
  overflow: hidden;
}

#solicita-llamada::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23ffffff" opacity="0.03"><circle cx="50" cy="50" r="2"/></svg>') repeat;
}

.llamada-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.llamada-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.llamada-content .lead {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.benefits-list {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefit-item i {
  color: white;
  font-size: 1.3rem;
}

.benefit-item span {
  opacity: 0.9;
}

.llamada-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.form-header {
  text-align: center;
  margin-bottom: 15px;
}

.form-header h4 {
  color: #0394FD;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-header p {
  color: #717B82;
  font-size: 1rem;
  opacity: 0.8;
}

.llamada-form .form-group {
  position: relative;
  margin-bottom: 15px;
}

.llamada-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
  font-size: 1rem;
}

.llamada-form label i {
  color: #0394FD;
  font-size: 1.1rem;
}

.llamada-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 15px 15px 50px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
}

.llamada-form .form-control:focus {
  border-color: #0394FD;
  box-shadow: 0 0 0 0.2rem rgba(3, 148, 253, 0.25);
  transform: translateY(-2px);
}

.llamada-form .form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #717B82;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.llamada-form .form-control:focus+.form-icon {
  color: #0394FD;
}

.llamada-form .btn {
  border: none;
  border-radius: 12px;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 10px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  color: white;
  font-family: "Montserrat", sans-serif;
}

.llamada-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #0057E2, #0057E2);
}

.llamada-form .btn i {
  margin-right: 10px;
}

.form-footer {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.form-footer p {
  font-size: 0.9rem;
  color: #717B82;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-footer i {
  color: #28a745;
}

.confirmation-message {
  text-align: center;
  padding: 40px 20px;
  background: #f8fff9;
  border-radius: 15px;
  border: 2px solid #28a745;
}

.confirmation-message .btn {
  margin-top: 20px;
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.confirmation-message .btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.confirmation-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
}

.confirmation-message h5 {
  color: #1e7e34;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.confirmation-message p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.contacto-adicional {
  margin-top: 50px;
}

.contact-item {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.contact-item i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 15px;
}

.contact-item h5 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.contact-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 992px) {
  .llamada-content h2 {
    font-size: 2.2rem;
  }

  .llamada-content h3 {
    font-size: 2.8rem;
  }

  .llamada-form-container {
    padding: 30px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #solicita-llamada {
    padding: 60px 0;
  }

  .llamada-content h2 {
    font-size: 1.8rem;
  }

  .llamada-content h3 {
    font-size: 2.2rem;
  }

  .llamada-content .lead {
    font-size: 1.1rem;
  }

  .llamada-form-container {
    padding: 25px 20px;
  }

  .benefit-item {
    font-size: 1rem;
  }

  .contact-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
}

@media (max-width: 576px) {
  .llamada-content h2 {
    font-size: 1.6rem;
  }

  .llamada-content h3 {
    font-size: 1.8rem;
  }

  .llamada-form .form-control {
    padding: 12px 12px 12px 45px;
  }

  .llamada-form .btn {
    padding: 15px;
    font-size: 1rem;
  }

  .contact-item i {
    font-size: 2rem;
  }

  .contact-item h5 {
    font-size: 1.1rem;
  }
}

/* ===== SECCIÓN NUESTROS CLIENTES ===== */
#nuestros-clientes {
  padding: 100px 0;
  background: #ffffff;
}

#nuestros-clientes h2 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #1E1E1E;
  margin-bottom: 15px;
}

#nuestros-clientes .lead {
  font-size: 1.3rem;
  color: #717B82;
}

.client-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #e9ecef;
}

.client-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-logo {
  margin-bottom: 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-placeholder {
  background: linear-gradient(135deg, #0394FD, #0057E2);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
}

.logo-placeholder span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

.logo-placeholder strong {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

.client-info h5 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1E1E1E;
  margin-bottom: 8px;
}

.client-info p {
  color: #717B82;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.client-years {
  background: #e3f2fd;
  color: #0394FD;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: bold;
}

.client-stats {
  margin-top: 50px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
  padding: 20px;
}

.stat-item h3 {
  color: #0394FD;
  margin-bottom: 10px;
}

.stat-item p {
  color: #717B82;
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* ===== SECCIÓN SUSCRIPCIÓN ===== */
#suscripcion {
  padding: 100px 0;
  background: linear-gradient(135deg, #717B82 0%, #1E1E1E 100%);
  position: relative;
}

#suscripcion::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230394FD" opacity="0.03"><circle cx="50" cy="50" r="2"/></svg>') repeat;
}

.suscripcion-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #fff, #0057E2);
  /* This was already the new color */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.suscripcion-content .lead {
  font-size: 1.3rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.benefits-suscripcion {
  margin-bottom: 30px;
}

.benefits-suscripcion .benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.benefits-suscripcion .benefit-item i {
  color: #0057E2;
  /* This was already the new color */
  font-size: 1.3rem;
}

.benefits-suscripcion .benefit-item span {
  opacity: 0.9;
}

.monitoreo-destacado {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 15px;
  border-left: 4px solid #0057E2;
  /* This was already the new color */
}

.monitoreo-icon {
  width: 60px;
  height: 60px;
  background: #0057E2;
  /* This was already the new color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.monitoreo-icon i {
  font-size: 1.8rem;
  color: #1E1E1E;
}

.monitoreo-destacado h4 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.monitoreo-destacado p {
  opacity: 0.9;
  margin: 0;
}

.suscripcion-form-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-header-suscripcion {
  text-align: center;
  margin-bottom: 30px;
}

.form-header-suscripcion h4 {
  color: #1E1E1E;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.form-header-suscripcion p {
  color: #717B82;
  font-size: 1rem;
  opacity: 0.8;
}

.suscripcion-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.suscripcion-form label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #1E1E1E;
  margin-bottom: 8px;
  font-size: 1rem;
}

.suscripcion-form label i {
  color: #0394FD;
  font-size: 1.1rem;
}

.suscripcion-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 12px 12px 12px 45px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.suscripcion-form .form-control:focus {
  border-color: #0394FD;
  box-shadow: 0 0 0 0.2rem rgba(3, 148, 253, 0.25);
}

.suscripcion-form .form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #717B82;
  font-size: 1.1rem;
}

.suscripcion-form .form-check {
  margin: 25px 0;
}

.suscripcion-form .form-check-input {
  margin-right: 10px;
}

.suscripcion-form .form-check-label {
  font-size: 0.9rem;
  color: #1E1E1E !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 500;
}

.suscripcion-form .form-check-label a {
  color: #0057E2 !important;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.suscripcion-form .form-check-label a:hover {
  color: #0057E2 !important;
  text-decoration: underline;
  transform: translateY(-1px);
}

.suscripcion-form .btn {
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: bold;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  color: white;
  font-family: "Montserrat", sans-serif;
}

.suscripcion-form .btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #0057E2, #0057E2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-footer-suscripcion {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e9ecef;
}

.form-footer-suscripcion p {
  font-size: 0.85rem;
  color: #717B82;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-footer-suscripcion i {
  color: #28a745;
}

.confirmation-suscripcion {
  text-align: center;
  padding: 40px 20px;
  background: #f8fff9;
  border-radius: 15px;
  border: 2px solid #28a745;
}

.confirmation-suscripcion .btn {
  margin-top: 20px;
  background: #28a745;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.confirmation-suscripcion .btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.confirmation-suscripcion .confirmation-icon {
  font-size: 3.5rem;
  color: #28a745;
  margin-bottom: 20px;
}

.confirmation-suscripcion h5 {
  color: #1e7e34;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.confirmation-suscripcion p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 25px;
}

@media (max-width: 992px) {
  #nuestros-clientes h2 {
    font-size: 2.5rem;
  }

  .suscripcion-content h2 {
    font-size: 2.2rem;
  }

  .suscripcion-form-container {
    margin-top: 40px;
    padding: 30px;
  }
}

@media (max-width: 768px) {

  #nuestros-clientes,
  #suscripcion {
    padding: 60px 0;
  }

  #nuestros-clientes h2 {
    font-size: 2rem;
  }

  .suscripcion-content h2 {
    font-size: 1.8rem;
  }

  .client-stats {
    padding: 30px 20px;
  }

  .stat-item h3 {
    font-size: 2.5rem;
  }

  .suscripcion-form-container {
    padding: 25px 20px;
  }
}

@media (max-width: 576px) {
  #nuestros-clientes h2 {
    font-size: 1.8rem;
  }

  .suscripcion-content h2 {
    font-size: 1.6rem;
  }

  .client-card {
    padding: 20px 15px;
  }

  .logo-placeholder {
    padding: 15px;
    min-width: 120px;
  }

  .logo-placeholder strong {
    font-size: 1.1rem;
  }

  .suscripcion-form .form-control {
    padding: 10px 10px 10px 40px;
  }

  .benefits-suscripcion .benefit-item {
    font-size: 1rem;
  }
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1E1E1E 0%, #1E1E1E 100%) !important;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230394FD" opacity="0.02"><circle cx="50" cy="50" r="1"/></svg>') repeat;
}

.footer-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0394FD;
  display: inline-block;
}

.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  margin-bottom: 8px;
}

.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-services a:hover {
  color: #0394FD;
  transform: translateX(3px);
}

.footer-services a i {
  color: #0394FD;
  font-size: 1.2rem;
  margin-top: 2px;
}

.footer-about .footer-description {
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.footer-about .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-about .footer-links li {
  margin-bottom: 8px;
}

.footer-about .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-about .footer-links a:hover {
  color: #0394FD;
}

.footer-about .footer-links a i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.footer-about .footer-links a:hover i {
  transform: translateX(3px);
}

.footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-contact-info .contact-item i {
  color: #0394FD;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}

.footer-contact-info .contact-item strong {
  color: #fff;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
}

.contact-schedule,
.contact-address {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.3;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal li {
  margin-bottom: 10px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  line-height: 1.3;
}

.footer-legal a:hover {
  color: #0394FD;
}

.footer-legal a i {
  color: #0394FD;
  font-size: 1rem;
  margin-top: 1px;
  min-width: 16px;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
  opacity: 0.3;
}

.footer-bottom {
  color: #999;
  font-size: 0.9rem;
}

.footer-bottom strong {
  color: #0394FD;
}

.footer-social-minimal {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.social-text {
  color: #999;
  font-size: 0.9rem;
}

.social-icon {
  color: #ccc;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #0394FD;
  transform: translateY(-2px);
}

/* Botón Up  */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0394FD, #0057E2);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #0057E2, #0057E2);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .footer-title {
    font-size: 1rem;
  }

  .footer-services a,
  .footer-about .footer-links a,
  .footer-legal a {
    font-size: 0.85rem;
  }

  .footer-social-minimal {
    justify-content: center;
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px !important;
  }

  .footer-contact-info .contact-item {
    margin-bottom: 15px;
  }

  .footer-social-minimal {
    text-align: center;
    justify-content: center;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 576px) {

  .footer-services a,
  .footer-about .footer-links a,
  .footer-legal a {
    font-size: 0.8rem;
  }

  .footer-contact-info .contact-item strong {
    font-size: 0.9rem;
  }

  .contact-schedule,
  .contact-address {
    font-size: 0.8rem;
  }

  .footer-social-minimal {
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}

/* ===== DROPDOWN DE SERVICIOS ===== */

.view-all-services {
  background: linear-gradient(135deg, #0394FD, #0057E2) !important;
  color: white !important;
  font-weight: bold !important;
  margin: 5px 10px !important;
  border-radius: 8px !important;
  text-align: center !important;
}

.view-all-services:hover {
  background: linear-gradient(135deg, #0057E2, #0057E2) !important;
  transform: translateY(-2px) !important;
}

.view-all-services i {
  margin-right: 8px;
}

.dropdown-item i {
  width: 20px;
  margin-right: 10px;
  opacity: 0.8;
}

.dropdown-divider {
  margin: 8px 0 !important;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .nav-item.dropdown .nav-link {
    pointer-events: none;
  }

  .nav-item.dropdown .nav-link::after {
    pointer-events: auto;
  }

  .nav-item.dropdown .nav-link[href] {
    pointer-events: auto;
  }
}

.dropdown-item {
  transition: all 0.2s ease;
  border-radius: 5px;
  margin: 2px 5px;
  width: auto;
}

.dropdown-item:hover {
  background-color: #0394FD !important;
  color: white !important;
  transform: translateX(5px);
}

.navbar-nav .nav-link.active {
  color: #0394FD !important;
  font-weight: bold;
}

/* ===== DROPDOWN DEL TELÉFONO  ===== */

.navbar-text.phone-number {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.navbar-text.phone-number:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown-menu.phone-dropdown {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  padding: 10px;
  min-width: 280px;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-option {
  padding: 12px 15px;
  border-radius: 10px;
  margin: 5px 0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.phone-option:hover {
  background: rgba(3, 148, 253, 0.2);
  transform: translateX(5px);
}

.option-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.option-content i {
  font-size: 1.3rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.phone-option:hover .option-content i {
  background: rgba(3, 148, 253, 0.3);
  transform: scale(1.1);
}

.option-content div {
  flex: 1;
}

.option-content strong {
  display: block;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
}

.option-content span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 2px;
}

.phone-option:nth-child(1) .option-content i {
  color: #28a745;
}

.phone-option:nth-child(2) .option-content i {
  color: #25d366;
}

.phone-option:nth-child(3) .option-content i {
  color: #17a2b8;
}

.schedule-info {
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.schedule-info i {
  color: #ffc107;
  font-size: 1.1rem;
}

.schedule-info strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
}

.schedule-info span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.dropdown-toggle::after {
  margin-left: 8px;
  border-top: 0.3em solid rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}

.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  animation: dropdownFadeIn 0.3s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .navbar-text.phone-number {
    margin: 10px 0;
    justify-content: center;
    width: 100%;
    max-width: 200px;
  }

  .dropdown-menu.phone-dropdown {
    position: static !important;
    transform: none !important;
    margin-top: 10px;
    width: 100%;
  }

  .ms-lg-3 {
    margin-left: 0 !important;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.phone-option {
  position: relative;
  overflow: hidden;
}

.phone-option::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(3, 148, 253, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.phone-option:hover::before {
  left: 100%;
}

.phone-option:active {
  transform: scale(0.98);
  transition: transform 0.1s ease;
}

.phone-option:focus {
  outline: 2px solid rgba(3, 148, 253, 0.5);
  outline-offset: 2px;
}

.phone-option:nth-child(2)::after {
  content: "Recomendado";
  position: absolute;
  top: -5px;
  right: 10px;
  background: #25d366;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}

/* ===== ESPECÍFICAS PARA MÓVILES ===== */
@media (max-width: 767.98px) {
  .navbar-text.phone-number {
    background: rgba(3, 148, 253, 0.2);
    border: 2px solid rgba(3, 148, 253, 0.3);
    font-size: 1.1rem;
    padding: 12px 20px;
  }

  .navbar-text.phone-number::after {
    display: none;
  }

  .dropdown-menu.phone-dropdown {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(3, 148, 253, 0.3);
  }

  .phone-option {
    padding: 15px;
    margin: 8px 0;
  }

  .option-content {
    gap: 15px;
  }

  .option-content i {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse.show .dropdown {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .navbar-collapse.show .dropdown-menu {
    text-align: center;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(3, 148, 253, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(3, 148, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(3, 148, 253, 0);
  }
}

.navbar-text.phone-number:hover {
  animation: pulse 2s infinite;
}

.navbar-text.phone-number .new-indicator {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 8px;
  height: 8px;
  background: #ff6b6b;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}


/* ===== BOTÓN FLOTANTE WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  animation: float-whatsapp 3s ease-in-out infinite;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
  font-size: 2rem;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes float-whatsapp {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* icono de teléfono por WhatsApp en el navbar */
.navbar-text.phone-number i {
  color: #25D366 !important;
}

/* Reducción de tamaño de fuente en la sección de llamadas */
.llamada-content h2 {
  font-size: 2.2rem !important;
}

.llamada-content h3 {
  font-size: 2.5rem !important;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-link {
    font-size: 1.8rem;
  }

  .llamada-content h2 {
    font-size: 1.8rem !important;
  }

  .llamada-content h3 {
    font-size: 2rem !important;
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-link {
    font-size: 1.6rem;
  }

  .llamada-content h2 {
    font-size: 1.6rem !important;
  }

  .llamada-content h3 {
    font-size: 1.8rem !important;
  }
}