/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #212529;
  }
  
  /* Navbar */
  .navbar-brand img {
    border: 2px solid #fff;
  }

/* Navbar Styles */
.navbar {
    padding: 1rem 0;
    border-bottom: 2px solid #e9ecef; /* Línea sutil */
  }
  
  .navbar-nav {
    display: flex;
    align-items: center;
    gap: 2rem; /* Espaciado entre los elementos del menú */
  }
  
  .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: capitalize;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .navbar-nav .nav-link:hover {
    color: #0d6efd; /* Color azul Bootstrap para hover */
  }
  

  /* Hero Section */
  .hero-section {
    background-color: #e9ecef;
    padding: 100px 0;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
  }

  /* Hero Carousel */
.carousel-item {
    height: 80vh;
    background-color: #000;
    color: white;
    position: relative;
}
.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    opacity: 0.7;
}
.carousel-caption {
    position: absolute;
    bottom: 20%;
}
  
  /* Cards Section */
  .cards-section .card {
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .cards-section .card:hover {
    transform: scale(1.05);
  }
  
  /* Footer */
  footer {
    background-color: #343a40;
    color: #fff;
  }
  
  a{
    text-decoration: none;
  }

  .bg-primary {
    background-color: #123460 !important;
}

.text-primary {
    color: #000080 !important;
}

.software-section {
  background-color: #002b5b; /* Color azul oscuro */
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  text-align: center; /* Asegura que el texto esté centrado */
}

.section-subtitle {
  color: #FFFFFF; /* Verde llamativo */
  font-size: 1.2rem; /* Corrige el valor del tamaño de fuente */
  margin-bottom: 2rem;
  text-align: center; /* Asegura que el texto esté centrado */
}

.module-card {
  background: #fff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
}

.module-card img {
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.module-card p {
  margin-top: 0.5rem;
  font-weight: bold;
}

.fixed-size {
  width: 100%; /* Ajusta el ancho al contenedor */
  height: 200px; /* Establece una altura fija */
  object-fit: cover; /* Mantiene la proporción recortando si es necesario */
}

/* Sección de Consultores */
.consultores-section {
  margin: 0;
  padding: 0;
}

/*Imagen translucida de la pagina de Registro e inscripciones ante la sat*/
.hero-consultores {
  background: url('consultores-background.jpg') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

/*Imagen translucida de la pagina de patente de comercio*/
.hero-patente {
  background: url('../Imagenes/img_patente2.png') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5); /* Overlay oscuro */
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 0;
}

/* Información de la sección */
.info-section {
  background: #f5f9ff; /* Fondo claro */
  padding: 40px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid; /*Cambia a grid, para que el titulo quede centrado*/
  flex-wrap: wrap;
}

.info-text {
  flex: 1;
  padding: 20px;
  max-width: 50%;
}

.info-text h2 {
  font-size: 1.8rem;
  color: #0056b3;
  margin-bottom: 1rem;
}

.info-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

.info-image {
  flex: 1;
  padding: 20px;
  max-width: 50%;
  text-align: center;
}

.info-image img {
  max-width: 80%;
  height: auto;
}



.hero-consultores {
  background-image: url('../Imagenes/ejemplo.jpg'); /* Cambia esto por la ruta de tu imagen */
  background-size: cover; /* Ajusta la imagen para que cubra todo el contenedor */
  background-position: center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  height: 300px; /* Ajusta el alto según lo que necesites */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white; /* Para que el texto sea legible */
  text-align: center; /* Centra el texto */
  padding: 20px;
  position: relative;
}
.hero-content {
  background: rgba(0, 0, 0, 0.5); /* Fondo oscuro semitransparente para mejorar la legibilidad del texto */
  padding: 20px;
  border-radius: 10px; /* Bordes redondeados */
}

/* Botón de WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 40px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float a {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
}