/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #333;
  padding-top: 80px; /* para que el contenido no quede oculto bajo el header */
}
.barra-contacto {
    background-color: #333;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contenido-contacto {
    display: flex;
    gap: 20px;
    align-items: center;
  }
  
  .barra-contacto .material-icons {
    font-size: 18px;
    vertical-align: middle;
  }
  
header {
  background-color: #0D1B2A;
  color: #fff;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.6rem;
    font-weight: bold;
  }
  
  .logo img {
    height: 100px;
    width: auto;
    padding-bottom: -30px;
  }

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #1B6CA8;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: #0D1B2A;
    position: absolute;
    top: 70px;
    right: 40px;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
}
.image-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
  }
  .image-slider {
    position: relative;
    width: 100%;
    height: 80vh; /* altura aumentada */
    overflow: hidden;
  }
  
  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: opacity;
  }
  
  .slide.active {
    opacity: 1;
  }
  
  .slide-text {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    color: #ffffff;
    text-align: center;
    padding: 25px 45px;
    border-radius: 16px;
    max-width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .slide-text h2 {
    font-size: 2.4rem;
    margin-bottom: 12px;
    color: #1B6CA8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  }
  
  .slide-text p {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  }
  
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s;
  }
  
  .arrow:hover {
    background-color: rgba(36, 35, 35, 0.6);
  }
  
  .arrow-left {
    left: 20px;
  }
  
  .arrow-right {
    right: 20px;
  }
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .feature-card {
    background-color: #1b6ca8;
    color: white;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    transition: background 0.5s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  
  .feature-card .icon {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin: 0;
    z-index: 1;
    position: relative;
  }
  
  /* Hover backgrounds */
  .card1:hover {
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSLlxwifNyWQCA6EBO5ES0z2d5ztGDU8AB-eA&s');
  }
  .card2:hover {
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQBytdAd7ak7ePSwVcthDR_70TYLe4uJfL2_Q&s');
  }
  .card3:hover {
    background-image: url('https://cmsresources.elempleo.com/co/assets/backend/styles/770x513/public/fotos/noticias/32487442_l.jpg');
  }
  .card4:hover {
    background-image: url('https://media.licdn.com/dms/image/v2/D4E12AQFvcseIEnxWBg/article-cover_image-shrink_720_1280/article-cover_image-shrink_720_1280/0/1681155734924?e=2147483647&v=beta&t=LofNZhoTZR1Pej0MmBM3rjOtIFEvSCc-HScN3grm2CA');
  }
  
  .feature-card:hover {
    background-size: cover;
    background-position: center;
    color: #f11010;
  }
  .seccion-con-fondo {
    position: relative;
    width: 100%;
    padding: 100px 20px 60px;
    background-color: #f0f4f8;
    overflow: hidden;
    color: #1b1b1b;
  }
  
  .background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .shape {
    position: absolute;
    opacity: 0.2;
    animation: float 10s infinite linear;
  }
  
  /* Figuras */
  .circle {
    width: 80px;
    height: 80px;
    background-color: #1b6ca8;
    border-radius: 50%;
    top: 10%;
    left: 5%;
  }
  
  .square {
    width: 60px;
    height: 60px;
    background-color: #ff6f61;
    top: 70%;
    left: 80%;
  }
  
  .triangle {
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 70px solid #00bcd4;
    top: 60%;
    left: 20%;
  }
  
  .diamond {
    width: 50px;
    height: 50px;
    background-color: #ffc107;
    transform: rotate(45deg);
    top: 20%;
    left: 65%;
  }
  
  @keyframes float {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(180deg);
    }
    100% {
      transform: translateY(0) rotate(360deg);
    }
  }
  
  /* Contenido encima */
  .contenido-principal {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .contenido-principal h1 {
    font-size: 2.8rem;
    color: #1b6ca8;
    margin-bottom: 10px;
  }
  
  .contenido-principal p {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }
  
  /* Cuadros */
  .cuadros-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .cuadro {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s ease;
  }
  
  .cuadro:hover {
    transform: translateY(-10px);
  }
  
  .cuadro img {
    width: 60px;
    margin-bottom: 15px;
  }
  
  .cuadro h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1b6ca8;
  }
  
  .cuadro p {
    font-size: 1rem;
  }
  .info-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f9fc;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #1b3c6d;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
  }
  .info-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f9fc;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #1b3c6d;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
  }
  .info-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #f5f9fc;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #1b3c6d;
    margin-bottom: 10px;
  }
  
  .section-description {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 40px;
  }
  .info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.links, .info-image {
    opacity: 0;
    transform: translateX(0);
    transition: all 0.6s ease-out;
}

.links.visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideInLeft 0.6s ease-out;
}

.info-image.visible {
    opacity: 1;
    transform: translateX(0);
    animation: slideInRight 0.6s ease-out;
}

.links {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinea todos los enlaces al principio */
    gap: 20px;
}

.info-link {
    display: flex;
    align-items: center; /* Centra el contenido dentro del enlace */
    justify-content: center; /* Centra el texto dentro del enlace */
    gap: 10px;
    font-size: 1.1rem;
    color: white;
    background-color: #1b6ca8;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 250px; /* Tamaño fijo para todos los enlaces */
    height: 60px; /* Altura uniforme para todos los enlaces */
    text-align: center; /* Asegura que el texto esté centrado */
}

.info-link:hover {
    background-color: #ffffff;
    color: #1b6ca8;
    transform: translateX(6px);
    border: 1px solid #1b6ca8;
}

.info-link .material-icons {
    font-size: 26px;
    transition: color 0.3s;
}

.info-link:hover .material-icons {
    color: #1b6ca8;
}

.info-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.info-image img {
    max-width: 100%;
    width: 650px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Animaciones */
@keyframes slideInLeft {
    from {
        transform: translateX(-40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(40px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

  .coti {
    background-color: #1b6ca8;
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  
  .shapes {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: move 10s infinite linear;
  }
  
  .shapes:nth-child(1) {
    top: 10%;
    left: 30%;
    animation-duration: 12s;
  }
  
  .shapes:nth-child(2) {
    top: 40%;
    left: 60%;
    animation-duration: 8s;
  }
  
  .shapes:nth-child(3) {
    top: 70%;
    left: 20%;
    animation-duration: 15s;
  }
  
  .content {
    z-index: 1;
    color: white;
    text-align: center;
  }
  
  .content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn {
    background-color: #ffffff;
    color: #1b6ca8;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  .btn:hover {
    background-color: #041d30;
    color: #ffffff;
    transform: translateY(-4px);
  }
  
  @keyframes move {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(200px, 200px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  /* Estilos para el footer */
/* Resetear márgenes y relleno */
  /* Estilos del footer */
  .footer {
    background-color: #0a3c63;
    color: white;
    padding: 40px 0;
    text-align: left;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; /* Para que sea responsive */
  }
  
  .footer-column {
    flex: 1;
    margin: 0 20px;
    min-width: 250px; /* Para evitar que las columnas se hagan demasiado pequeñas */
  }
  
  .footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
  }
  
  .footer-column p,
  .footer-column ul {
    font-size: 1rem;
    color: #ffffff;
  }
  
  .footer-column ul {
    list-style-type: none;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
  }
  
  .footer-column a:hover {
    color: #ffcc00; /* Color dorado al pasar el cursor */
  }
  
  .footer-column p {
    margin-bottom: 10px;
  }
  
  /* Hacer que el footer sea responsivo en pantallas más pequeñas */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }
    
    .footer-column {
      margin: 10px 0;
    }
  }
  /* Estilos del contenedor del blog */
.blog {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  /* Estilos para las publicaciones */
  .blog-post {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: calc(33% - 20px);
    padding: 20px;
    transition: transform 0.3s ease;
  }
  
  .blog-post:hover {
    transform: translateY(-10px);
  }
  
  /* Títulos de las publicaciones */
  .blog-post h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #1b6ca8;
  }
  
  /* Fecha de la publicación */
  .blog-post .date {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
  }
  
  /* Resumen de la publicación */
  .blog-post .excerpt {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
  }
  
  /* Enlace de "Leer más" */
  .blog-post .read-more {
    font-size: 1.1rem;
    text-decoration: none;
    color: #1b6ca8;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .blog-post .read-more:hover {
    color: #ff6600;
  }
  
  /* Responsividad */
  @media (max-width: 768px) {
    .blog-post {
      width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 480px) {
    .blog-post {
      width: 100%;
    }
  }
  /* ============================================= */
/* === ESTILOS RESPONSIVE (AGREGAR AL FINAL) === */
/* ============================================= */

/* 1. AJUSTES GENERALES RESPONSIVE */
@media (max-width: 1200px) {
  .features, 
  .cuadros-container,
  .info-content,
  .blog {
    padding: 0 2rem;
  }
}

/* 2. HEADER RESPONSIVE */
@media (max-width: 992px) {
  header {
    padding: 15px 2rem;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo img {
    height: 80px;
  }
  
  nav ul {
    gap: 20px;
  }
}

/* 3. SLIDER RESPONSIVE */
@media (max-width: 768px) {
  .image-slider {
    height: 60vh;
  }
  
  .slide-text {
    padding: 15px;
    max-width: 95%;
  }
  
  .slide-text h2 {
    font-size: 1.8rem !important;
  }
  
  .slide-text p {
    font-size: 1rem !important;
  }
  
  .arrow {
    font-size: 2rem;
    padding: 8px 12px;
  }
}

/* 4. FEATURES RESPONSIVE */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 30px 15px;
  }
}

/* 5. BENEFICIOS RESPONSIVE */
@media (max-width: 768px) {
  .cuadros-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .contenido-principal h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .cuadros-container {
    grid-template-columns: 1fr;
  }
  
  .cuadro {
    width: 100%;
  }
}

/* 6. SERVICIOS RESPONSIVE */
@media (max-width: 992px) {
  .info-content {
    flex-direction: column;
  }
  
  .links {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .info-image {
    justify-content: center;
  }
  
  .info-image img {
    width: 100%;
  }
}

/* 7. COTIZADOR RESPONSIVE */
@media (max-width: 768px) {
  .coti .content h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }
  
  .btn {
    padding: 12px 24px;
  }
}

/* 8. BLOG RESPONSIVE */
@media (max-width: 768px) {
  .blog-post {
    width: calc(50% - 15px) !important;
  }
}

@media (max-width: 576px) {
  .blog-post {
    width: 100% !important;
  }
}

/* 9. FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .footer-column {
    flex: 100%;
    margin-bottom: 2rem;
    text-align: center;
  }
}

/* 10. AJUSTES PARA MOVILES PEQUEÑOS (<480px) */
@media (max-width: 480px) {
  body {
    padding-top: 70px;
  }
  
  .barra-contacto {
    font-size: 12px;
    padding: 6px 10px;
  }
  
  .contenido-contacto {
    gap: 10px;
  }
  
  .logo {
    font-size: 1.2rem;
    gap: 8px;
  }
  
  .logo img {
    height: 60px;
  }
  
  .slide-text h2 {
    font-size: 1.4rem !important;
  }
  
  .seccion-con-fondo {
    padding: 60px 15px;
  }
  
  .contenido-principal h1 {
    font-size: 1.8rem;
  }
}

/* 11. ORIENTACIÓN HORIZONTAL EN MOVILES */
@media (max-height: 500px) and (orientation: landscape) {
  .image-slider {
    height: 100vh;
  }
  
  .slide-text {
    padding: 10px;
  }
  
  .slide-text h2 {
    font-size: 1.4rem !important;
    margin-bottom: 8px;
  }
}
/* Estilos para el nuevo footer */
.modern-footer {
  background: #0D1B2A;
  color: #ffffff;
  padding: 50px 0 0;
  font-family: 'Arial', sans-serif;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.brand-text h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1.2;
}

.tagline {
  margin: 0;
  color: #1B6CA8;
  font-weight: 500;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #1B6CA8;
  transform: translateY(-3px);
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: #1B6CA8;
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #1B6CA8;
}

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

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #1B6CA8;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #1B6CA8;
  margin-top: 3px;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.legal-links a:hover {
  color: #1B6CA8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-middle {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
  }
}
/* Para pantallas pequeñas (menú hamburguesa) */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* Mostrar el botón ☰ */
    cursor: pointer;
    font-size: 24px;
    padding: 10px;
  }
  
  nav ul#menu {
    display: none; /* Ocultar menú por defecto */
    flex-direction: column;
    width: 100%;
    background: #fff; /* o el color que prefieras */
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
  }
  
  nav ul#menu.show {
    display: flex; /* Mostrar cuando tiene la clase "show" */
  }
  
  nav ul#menu li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #eee;
  }
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li a {
  padding: 10px 15px;
  text-decoration: none;
  color: #f1f1f1; /* o tu color preferido */
  font-size: 20px;
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav ul {
    flex-direction: column;
    background-color: #0D1B2A; /* Mismo color que el header */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    padding: 20px 0;
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    padding: 10px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  nav ul li a {
    color: #fff !important; /* Fuerza texto blanco */
  }
}

/* Slider de imágenes */
.image-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-text {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  color: #fff; /* Texto del slider en blanco */
  padding: 25px 45px;
  border-radius: 16px;
  max-width: 90%;
  text-align: center;
}

.slide-text h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: #1B6CA8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.slide-text p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Flechas del slider */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
}

.arrow-left {
  left: 20px;
}

.arrow-right {
  right: 20px;
}

/* Sección de características */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 40px;
  max-width: 1200px;
  margin: auto;
}

.feature-card {
  background-color: #1b6ca8;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-radius: 12px;
  transition: all 0.5s ease;
}

.feature-card .icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* ... (resto de tus estilos existentes) ... */

/* Asegurar texto blanco en todas las secciones necesarias */
.seccion-con-fondo,
.info-section,
.coti,
.modern-footer {
  color: #fff;
}

/* Footer */
.modern-footer {
  background-color: #0D1B2A;
  color: #fff;
}

.footer-column a {
  color: #fff;
}

/* Responsive adicional */
@media (max-width: 480px) {
  .slide-text h2 {
    font-size: 1.5rem;
  }
  .slide-text p {
    font-size: 1rem;
  }
}