/* Estilos personalizados para Webriders Agency */
:root {
    --primary: #5e17eb; /* Morado */
    --primary-dark: #4a148c; /* Morado oscuro */
    --primary-light: #7a3df5; /* Morado claro */
    --success: #05ff00; /* Verde fosforescente */
    --success-dark: #04cc00; /* Verde más oscuro */
    --secondary: #ff5722;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, #5e17eb 0%, #7a3df5 100%);
    --gradient-success: linear-gradient(135deg, #05ff00 0%, #04cc00 100%);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Estilos generales */
html, body {
    overflow-x: hidden;
}

* {
    max-width: 100vw; /* Limita el ancho máximo al ancho del viewport */
    box-sizing: border-box; /* Incluye padding y borde en el ancho total */
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-secondary);
    color: var(--dark);
}

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary); /* Morado */
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark); /* Morado oscuro */
    border-color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(94, 23, 235, 0.4);
}

.btn-outline-primary {
    color: var(--primary); /* Morado */
    border-color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--primary); /* Morado */
    color: white;
}

.btn-success {
    background: var(--success); /* Verde fosforescente */
    border-color: var(--success);
    color: white;
}

.btn-success:hover,
.btn-success:focus {
    background: var(--success-dark); /* Verde más oscuro */
    border-color: var(--success-dark);
    box-shadow: 0 5px 15px rgba(5, 255, 0, 0.4);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Centrar el menú */
.navbar-nav {
    margin-left: auto; /* Empuja los enlaces hacia la derecha */
    margin-right: auto; /* Empuja los enlaces hacia el centro */
    text-align: center; /* Centra los enlaces */
}

.navbar-nav .nav-item {
    margin: 0 40px;
}

.navbar-nav .nav-link {
    color: var(--dark); /* Color oscuro para los enlaces */
    font-weight: 500;
    padding: 10px 15px; /* Espaciado interno */
    transition: color var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary); /* Morado al pasar el cursor */
}

/* Navbar */
.navbar {
  position: relative; /* Asegura que el navbar esté en su lugar */
  z-index: 10; /* Asegura que esté por encima de otros elementos */
  background-color: var(--light); /* Fondo claro */
  padding: 11px 20px; /* Espaciado interno */
  box-shadow: var(--box-shadow); /* Sombra sutil */
  transition: var(--transition);
}

.navbar a {
  color: var(--dark); /* Color oscuro para los enlaces */
  font-weight: 500;
  transition: color var(--transition);
}

.navbar a:hover {
  color: var(--primary); /* Morado al pasar el cursor */
}

/* Logo del navbar */
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 50px; /* Ajusta la altura del logo */
  max-height: 100%; /* Asegura que no se deforme */
  width: auto; /* Mantiene la proporción del logo */
  transition: transform var(--transition);
}

.navbar-logo:hover {
  transform: scale(1.1); /* Efecto de zoom al pasar el cursor */
}

/* Botón de menú de hamburguesa */
.navbar-toggler {
  border: none; /* Sin borde */
  background-color: var(--primary); /* Fondo morado */
  padding: 8px 10px; /* Ajusta el tamaño del botón */
  border-radius: var(--border-radius); /* Bordes redondeados */
  transition: background var(--transition);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* Líneas blancas */
}

.navbar-toggler:hover {
  background-color: var(--success); /* Verde al pasar el cursor */
}

/* Redes sociales */
.social-icons a {
    color: var(--primary-light); /* Color oscuro */
    font-size: 1.5rem; /* Tamaño de los íconos */
    margin: 0 10px; /* Espaciado entre los íconos */
    transition: color 0.3s ease;
}

social-icons a:hover {
    color: var(--success) ; /* Cambia el color al pasar el cursor */
}

/* Redes sociales en dispositivos móviles */
.social-icons.d-flex.d-lg-none {
    justify-content: center; /* Centra los íconos horizontalmente */
    margin-top: 10px; /* Ajusta el espacio superior si es necesario */
    margin-left: -60px; /* Mueve los íconos un poco hacia la izquierda */
}

/* Redes sociales en el navbar */
.navbar-social-icons {
  display: flex;
  align-items: center;
  margin-left: auto; /* Alinea las redes sociales a la derecha */
}

.navbar-social-icons a {
  color: var(--primary); /* Morado por defecto */
  font-size: 1.5rem; /* Tamaño de los íconos */
  margin: 0 10px; /* Espaciado entre los íconos */
  transition: color var(--transition), transform var(--transition);
}

.navbar-social-icons a:hover {
  color: var(--success); /* Verde al pasar el cursor */
  transform: scale(1.1); /* Efecto de zoom */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 992px) {
  .navbar-nav {
    margin-left: 0; /* Centra los enlaces en mobile */
    text-align: center;
  }

  .navbar-social-icons {
    margin-top: 10px; /* Espaciado adicional en mobile */
    justify-content: center; /* Centra las redes sociales */
  }
}

/* Hero Section */
#hero {
  background-color: var(--primary); /* Fondo morado */
  position: relative; /* Necesario para el pseudo-elemento */
  height: 140vh; /* Ocupa toda la altura del viewport */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: white; /* Texto blanco */
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/background.png'); /* Imagen transparente */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.4; /* Ajusta la opacidad de la imagen */
  z-index: 1; /* Asegura que esté detrás del contenido */
}

#hero .container {
  position: relative;
  z-index: 2; /* Asegura que el contenido esté encima de la imagen */
}

.hero-title {
  font-size: 3.5rem; /* Tamaño del título */
  margin-bottom: 20px;
  line-height: 1.2; /* Ajusta el interlineado */
  font-weight: 700; /* Negrita */
}

.hero-subtitle {
  font-size: 1.2rem; /* Tamaño del subtítulo */
  margin-bottom: 30px;
  font-weight: 400; /* Peso normal */
  max-width: 500px; /* Limita el ancho del subtítulo */
}

.hero-btns {
  display: flex;
  gap: 15px; /* Espaciado entre los botones */
}

.hero-btns .btn {
  font-size: 1rem;
  padding: 12px 30px; /* Ajusta el tamaño de los botones */
  border-radius: 30px; /* Bordes redondeados */
  font-weight: 600; /* Negrita */
}

.hero-btns .btn-primary {
  background: var(--success); /* Verde fosforescente */
  border-color: var(--success);
  color: white;
}

.hero-btns .btn-primary:hover {
  background: var(--success-dark); /* Verde más oscuro */
  border-color: var(--success-dark);
}

.hero-btns .btn-outline-primary {
  color: white; /* Texto blanco */
  border-color: white;
}

.hero-btns .btn-outline-primary:hover {
  background: white;
  color: var(--primary); /* Texto morado */
}

/* Animación de movimiento para la imagen del hero */
@keyframes surf-movement {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-2deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(10px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.hero-image {
  animation: surf-movement 3s infinite ease-in-out;
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem; /* Reduce el tamaño del título */
  }

  .hero-subtitle {
    font-size: 1rem; /* Reduce el tamaño del subtítulo */
  }

  .hero-btns .btn {
    font-size: 0.9rem; /* Reduce el tamaño de los botones */
    padding: 10px 20px;
  }
}

/* Secciones generales */
section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title span {
    color: var(--primary); /* Morado */
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Contador de estadísticas */
.stat-item {
  text-align: center;
  padding: 20px;
  margin-bottom: 30px;
}

.stat-item h2 {
  font-size: 3rem; /* Tamaño del número */
  color: var(--primary); /* Color del número */
  margin-bottom: 10px;
  display: inline-flex; /* Asegura que el número y el signo estén en la misma línea */
  align-items: baseline; /* Alinea el signo con la línea base del número */
  justify-content: center;
}

.stat-item .stat-sign {
  font-size: 2rem; /* Tamaño del signo proporcional al número */
  margin-left: 5px; /* Espaciado entre el número y el signo */
  color: var(--primary); /* Color del signo */
}

.stat-item p {
  color: var(--gray); /* Color del texto */
  margin-bottom: 0;
  font-weight: 500;
}

/* Servicios */
.service-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Círculo verde en la esquina superior derecha */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--success); /* Verde fosforescente */
    border-radius: 0 0 0 100%; /* Forma de círculo parcial */
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary); /* Gradiente morado */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon.success {
    background: var(--gradient-success); /* Gradiente verde */
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary);
    margin-right: 10px;
}

.service-link {
    font-weight: 600;
    color: var(--primary); /* Morado */
    display: flex;
    align-items: center;
}

.service-link:hover {
    color: var(--success); /* Verde fosforescente */
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Estilo para los detalles de los servicios */
.service-details {
  margin-top: 10px;
  padding-left: 20px;
  list-style-type: disc;
  color: var(--gray);
  font-size: 0.9rem;
  transition: max-height 0.3s ease;
}

.service-details.d-none {
  display: none;
}

/* Proceso */
.process-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success); /* Verde fosforescente */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.process-icon span {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: var(--primary); /* Morado */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.process-icon i {
    font-size: 2.5rem;
    color: white; /* Ícono en blanco para contraste */
}

.process-item h4 {
    margin-bottom: 15px;
}

.process-item::after {
    content: "";
    position: absolute;
    top: 50px;
    right: 0;
    width: 50%;
    height: 2px;
    background: var(--primary-light);
    z-index: -1;
}

.process-item:last-child::after {
    display: none;
}

/* Sobre Nosotros */
.about-img {
    position: relative;
}

.about-img::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60%;
    height: 60%;
    background: var(--gradient-primary); /* Gradiente morado */
    z-index: -1;
    border-radius: var(--border-radius);
}

.about-features {
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.about-feature i {
    width: 40px;
    height: 40px;
    background: var(--success); /* Verde fosforescente */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
}

.about-feature h5 {
    margin-bottom: 0;
    font-weight: 600;
}

/* Testimonios */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    position: relative;
    height: 100%;
    border-left: 5px solid var(--success); /* Verde fosforescente */
}

.testimonial-card::before {
    content: "\201C";
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--primary-light); /* Morado claro */
    position: absolute;
    top: -10px;
    left: 20px;
}

/* Footer */
.footer {
    background: var(--dark); /* Fondo oscuro */
    color: var(--light); /* Texto claro */
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo-section {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary); /* Morado */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0 auto;
    max-width: 300px;
}

.footer-links-section {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
}

.footer-links-section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light); /* Texto claro */
    text-decoration: none;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--success); /* Verde fosforescente */
}

.footer-social-section {
    flex: 1 1 100%;
    text-align: center;
    margin-bottom: 20px;
}

.footer-social-section h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--light);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    background: var(--primary); /* Morado */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: background var(--transition), transform var(--transition);
}

.footer-social-icons a:hover {
    background: var(--success); /* Verde fosforescente */
    transform: scale(1.1); /* Efecto de zoom */
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray); /* Texto gris claro */
}

.footer-bottom a {
    color: var(--primary); /* Morado */
    text-decoration: none;
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--success); /* Verde fosforescente */
}

/* Responsividad para el Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo-section,
    .footer-links-section,
    .footer-social-section {
        flex: 1 1 100%;
        margin-bottom: 20px;
    }

    .footer-description {
        max-width: 100%;
    }
}

/* Sección de Contacto */
.contact-section {
  background: var(--light); /* Fondo claro */
  padding: 80px 0;
}

.contact-section .section-header {
  margin-bottom: 40px;
}

.contact-section .section-title {
  font-size: 2.5rem;
  color: var(--primary); /* Morado */
  margin-bottom: 15px;
}

.contact-section .section-description {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Información de Contacto */
.contact-info {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start; /* Alinea los íconos y el texto al inicio */
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 2rem;
  color: var(--primary); /* Morado */
  margin-right: 15px; /* Espaciado entre el ícono y el texto */
}

.contact-item h5 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--dark); /* Texto oscuro */
}

.contact-item p {
  margin: 0;
  color: var(--gray); /* Texto gris */
  line-height: 1.5; /* Espaciado entre líneas */
}

.contact-item a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary); /* Morado */
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray);
  border-radius: var(--border-radius);
  font-size: 1rem;
  color: var(--dark);
}

.contact-form .form-control:focus {
  border-color: var(--primary); /* Morado */
  box-shadow: 0 0 5px rgba(94, 23, 235, 0.2);
}

.contact-form button {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--border-radius);
  background: var(--primary); /* Morado */
  color: white;
  transition: var(--transition);
}

.contact-form button:hover {
  background: var(--primary-dark); /* Morado oscuro */
  box-shadow: 0 5px 15px rgba(94, 23, 235, 0.4);
}

/* Row */
.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Contenedor del portafolio */
.portfolio-container {
  display: flex;
  flex-wrap: wrap; /* Asegura que las tarjetas se ajusten automáticamente */
  justify-content: center; /* Centra las tarjetas horizontalmente */
  gap: 1.9rem; /* Espaciado entre las tarjetas */
  margin: auto; /* Centra el contenedor completo */
  max-width: 1200px; /* Limita el ancho máximo del contenedor */
}

/* Tarjetas del portafolio */
.portfolio-item {
  width: calc(33.333% - 10px); /* Tres columnas en pantallas grandes */
  max-width: 500px; /* Ancho máximo para tarjetas */
  display: block;
}

/* Ajustes para pantallas medianas (tablets) */
@media (max-width: 992px) {
  .portfolio-item {
    width: calc(50% - 30px); /* Dos columnas en tablets */
  }
}

/* Ajustes para pantallas pequeñas (móviles) */
@media (max-width: 576px) {
  .portfolio-item {
    width: 100%; /* Una columna en móviles */
    max-width: 100%; /* Ocupa todo el ancho disponible */
  }
}

/* Tarjetas del portafolio */
.portfolio-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-img {
  position: relative;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-img img {
  transform: scale(1.1); /* Efecto de zoom */
}

.portfolio-info {
  padding: 15px;
  text-align: center;
}

.portfolio-info h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--primary); /* Morado */
}

.portfolio-info p {
  font-size: 0.9rem;
  color: #666;
}

/* Botones de filtro en el portafolio */
.portfolio-filter button {
  font-size: 1rem; /* Tamaño del texto */
  padding: 10px 20px; /* Espaciado interno */
  margin: 5px; /* Espaciado entre botones */
  border: 2px solid var(--primary); /* Borde morado */
  border-radius: 30px; /* Bordes redondeados */
  background-color: transparent; /* Fondo transparente */
  color: var(--primary); /* Color del texto */
  font-weight: 600; /* Negrita */
  transition: all 0.3s ease; /* Transición suave */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

.portfolio-filter button:hover {
  background-color: var(--primary); /* Fondo morado */
  color: white; /* Texto blanco */
  transform: translateY(-2px) scale(1.05); /* Efecto de elevación */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* Sombra más intensa */
}

.portfolio-filter button.active {
  background-color: var(--success); /* Fondo verde fosforescente */
  color: white; /* Texto blanco */
  border-color: var(--success-dark); /* Borde verde más oscuro */
  transform: scale(1.1); /* Efecto de zoom */
}

/* Ajustes para dispositivos móviles */
@media (max-width: 768px) {
  .portfolio-filter button {
    font-size: 0.9rem; /* Reduce el tamaño del texto */
    padding: 8px 15px; /* Ajusta el espaciado interno */
    margin: 5px 3px; /* Reduce el margen entre botones */
  }
}

/* Sección de marcas */
#trusted-brands {
  background-color: #f8f9fa; /* Fondo claro */
}

#trusted-brands .section-title {
  font-size: 2rem;
  font-weight: 700;
}

#trusted-brands .carousel-item img {
  max-width: 160px; /* Ancho máximo uniforme */
  max-height: 180px; /* Altura máxima uniforme */
  width: auto; /* Mantiene la proporción del logo */
  height: auto; /* Mantiene la proporción del logo */
  margin: 0 auto; /* Centra los logos dentro de su contenedor */
  display: block; /* Asegura que las imágenes sean bloques */
  object-fit: contain; /* Ajusta el logo dentro del espacio definido */
  filter: grayscale(100%); /* Efecto de escala de grises */
  transition: filter 0.3s ease, transform 0.3s ease; /* Transición suave */
}

#trusted-brands .carousel-item img:hover {
  filter: grayscale(0); /* Quita el efecto de escala de grises al pasar el cursor */
  transform: scale(1.1); /* Efecto de zoom al pasar el cursor */
}

/* Ajustar el espacio del carrusel de marcas */
#trusted-brands .carousel-inner {
  padding: 20px 0; /* Agrega espacio superior e inferior dentro del carrusel */
}

#trusted-brands .carousel-control-prev,
#trusted-brands .carousel-control-next {
  top: 50%; /* Centra verticalmente las teclas de navegación */
  transform: translateY(-50%); /* Ajusta el posicionamiento */
  width: 50px; /* Aumenta el área de clic de las teclas */
  height: 50px; /* Aumenta el área de clic de las teclas */
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
  border-radius: 50%; /* Forma circular */
}

#trusted-brands .carousel-control-prev-icon,
#trusted-brands .carousel-control-next-icon {
  width: 20px; /* Ajusta el tamaño del ícono */
  height: 20px; /* Ajusta el tamaño del ícono */
}

/* Espaciado adicional entre los logos y las teclas de navegación */
#trusted-brands .row {
  margin-bottom: 20px; /* Espacio inferior entre los logos y las teclas */
}

/* Estilo personalizado para cada logo */

/* Logo SEID */
.logo-seid {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  margin: 0 auto;
  border: 2px solid #ddd; /* Borde opcional */
  padding: 5px; /* Espaciado interno opcional */
}

/* Logo Activologo */
.logo-activologo {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 10px; /* Bordes redondeados */
  background-color: #f8f9fa; /* Fondo opcional */
}

/* Logo Mental */
.logo-mental {
  max-width: 150px;
  max-height: 75px;
  object-fit: contain;
  margin: 0 auto;
  filter: grayscale(100%); /* Escala de grises */
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-mental:hover {
  filter: grayscale(0); /* Quita escala de grises al pasar el cursor */
  transform: scale(1.1); /* Efecto de zoom */
}

/* Logo Hub */
.logo-hub {
  max-width: 10px;
  max-height: 15px;
  object-fit: contain;
  margin: 0 auto;
  border: 1px solid #ccc; /* Borde ligero */
}

/* Logo Chop */
.logo-chop {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  background-color: #e9ecef; /* Fondo claro */
  padding: 10px; /* Espaciado interno */
}

/* Logo Metric */
.logo-metric {
  max-width: 140px;
  max-height: 70px;
  object-fit: contain;
  margin: 0 auto;
  border: 2px dashed #007bff; /* Borde punteado */
}

/* Logo Tapura */
.logo-tapura {
  max-width: 150px;
  max-height: 75px;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 50%; /* Forma circular */
  background-color: #f1f1f1; /* Fondo claro */
  padding: 10px;
}

/* Logo Placeholder */
.logo-placeholder {
  max-width: 150px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.8; /* Transparencia */
  transition: opacity 0.3s ease;
}

.logo-placeholder:hover {
  opacity: 1; /* Quita la transparencia al pasar el cursor */
}

/* Botón de WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px; /* Distancia desde la parte inferior */
  right: 20px; /* Distancia desde la parte derecha */
  background-color: #25d366; /* Color verde de WhatsApp */
  color: white;
  font-size: 2rem; /* Tamaño del ícono */
  width: 60px; /* Ancho del botón */
  height: 60px; /* Altura del botón */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Forma circular */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1); /* Efecto de zoom al pasar el cursor */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}

.whatsapp-button i {
  font-size: 1.8rem; /* Tamaño del ícono */
}

/* Video Card */
.video-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-title {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}
