/* ===================== BASE ===================== */
body { 
  font-family: 'Lato', sans-serif; 
  margin:0;
  padding:0;
  overflow-x:hidden;
  color:#333;
  background:#f8f9fa;
  padding-top:140px; /* 🔥 Espacio para header fijo */
}
a { text-decoration:none; transition:0.3s; }
h1,h2,h3,h4 { font-weight:700; }

/* ===================== TOPBAR ===================== */
.topbar { 
  background:#c8102e; 
  color:white; 
  font-size:0.9rem; 
  padding:8px 0; 
}
.topbar span { margin-right:20px; }

/* ===================== HEADER ===================== */
header { 
  background:white; 
  box-shadow:0 2px 6px rgba(0,0,0,0.1); 
  position:fixed;   
  top:0;            
  left:0;
  width:100%;
  z-index:1000;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 20px;
}
.logo img { 
  max-height:120px; 
  width:auto; 
}

/* ===================== MENÚ HAMBURGUESA ===================== */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.8rem;
  background: none;
  border: none;
  outline: none;
  z-index: 1002;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #c8102e;
  margin: 6px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== NAV ===================== */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.nav-links a {
  color:#333;
  margin:0 12px;
  font-weight:500;
  text-decoration:none;
  padding:6px 12px;
  border-radius:20px;
  transition: all 0.3s ease;
}
.nav-links a:hover {
  background:#c8102e;
  color:#fff;
}
.nav-links a.active {
  background:#c8102e;
  color:#fff;
}
.btn-ayuda {
  border:1px solid #c8102e;
  border-radius:30px;
  padding:6px 18px;
  color:#c8102e !important;
  font-weight:600;
}
.btn-ayuda:hover {
  background:#c8102e;
  color:white !important;
}

/* ===================== RESPONSIVE NAV ===================== */
@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 0 0 0 8px;
    padding: 1rem;
    z-index: 1001;
  }
  .nav-links.active { display: flex; }
  .nav-links a {
    margin: 10px 0;
    color:#333;
  }
}

/* ===================== SECCIÓN NOSOTROS ===================== */
.nosotros h1 {
  font-size:2.5rem;
  color:#c8102e;
}
.nosotros p {
  font-size:1.05rem;
  line-height:1.7;
}
.nosotros h3 {
  color:#111;
  margin-bottom:15px;
}
.nosotros h4 {
  color:#c8102e;
  margin-top:20px;
  margin-bottom:10px;
}
.nosotros ul {
  list-style:none;
  padding:0;
}
.nosotros ul li {
  margin-bottom:8px;
  font-size:1rem;
  color:#444;
}

/* ===================== FOOTER ===================== */
footer { 
  background: #111;  
  color: #fff;       
  font-size: 0.9rem;
  padding: 40px 20px;
}
footer h2, footer h5 { font-size: 1.2rem; font-weight:700; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { color: #dc3545; }
.partner-logo { max-height: 50px; opacity: 0.8; transition: 0.3s; }
.partner-logo:hover { opacity: 1; }
.footer-logo { max-width: 120px; height: auto; }
.footer-logo + h2 { font-size: 1.2rem; }
.social-links a { font-size: 1.5rem; margin-right: 10px; color: #fff; }
.social-links a:hover { color: #dc3545; }
.btn-maps {
  display: inline-block;
  background: #dc3545;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-maps:hover { background: #b02a37; }

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position:fixed;
  bottom:20px;
  right:20px;
  background:#25D366;
  border-radius:50%;
  width:65px;
  height:65px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 15px rgba(0,0,0,0.3);
  transition:transform .3s ease;
  z-index:1000;
  animation:bounce 3s infinite;
}
.whatsapp-float:hover { transform:scale(1.1); }
.whatsapp-float img { width:35px; height:35px; }
@keyframes bounce {
  0%, 100% { transform:translateY(0); }
  50% { transform:translateY(-5px); }
}

/* ===================== HERO PYMES ===================== */
.pymes-hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('../img/Sample5.webp') center/cover no-repeat;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.pymes-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.pymes-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 10px auto 0;
  color: #f5f5f5;
}

/* ===================== CTA FINAL ===================== */
.cta-pymes {
  background: linear-gradient(135deg, rgba(200,16,46,0.9), rgba(0,0,0,0.85)),
              url('../img/pymes-bg.webp') center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  border-radius: 0;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
}

.cta-pymes h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-pymes p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.cta-pymes .btn-cta {
  display: inline-block;
  background: #fff;
  color: #c8102e;
  padding: 12px 28px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-pymes .btn-cta:hover {
  background: #c8102e;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ===================== SECTORES PYMES ===================== */
.sectores-pymes {
  background: #f8f9fb;
  padding: 80px 0;
}

.sectores-pymes h2 {
  color: #111;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 50px;
}

.sectores-pymes .sector-card {
  background: #fff;
  border: none;
  border-radius: 22px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 40px 25px;
  transition: all 0.35s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.sectores-pymes .sector-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, #c8102e, #a40e26);
  z-index: 0;
  transition: all 0.4s ease;
  border-radius: 22px;
}

.sectores-pymes .sector-card:hover::before {
  width: 100%;
}

.sectores-pymes .sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.sectores-pymes .sector-card i {
  font-size: 3.5rem;
  color: #c8102e;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
  transition: color 0.4s ease;
}

.sectores-pymes .sector-card:hover i {
  color: #fff;
}

.sectores-pymes .sector-card h5 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  transition: color 0.4s ease;
}

.sectores-pymes .sector-card p {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.6;
  z-index: 1;
  position: relative;
  transition: color 0.4s ease;
}

.sectores-pymes .sector-card:hover h5,
.sectores-pymes .sector-card:hover p {
  color: #fff;
}

/* ===================== TEXTOS Y BLOQUES GENERALES ===================== */
.beneficios-pymes h5,
.coberturas-pymes h5 {
  color: #c8102e;
}

.testimonios-pymes blockquote {
  font-style: italic;
  border-left: 4px solid #c8102e;
  padding-left: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* ===================== COBERTURAS MODERNAS ===================== */
.coberturas-pymes-modern {
  background: linear-gradient(135deg, #c8102e, #6b0f1a);
  position: relative;
  color: #fff;
}

.card-cobertura {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: center;
  color: #fff;
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-cobertura i {
  font-size: 2.8rem;
  color: #ffb703;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card-cobertura h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.card-cobertura p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #f1f1f1;
}

.card-cobertura:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.card-cobertura:hover i {
  transform: scale(1.2);
  color: #fff;
}



/* ===================== HERO ARL ===================== */
.arl-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('../../Milenio/img/Sample3.webp') center/cover no-repeat;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===================== SECCIÓN INTRODUCCIÓN ===================== */
.arl-intro h2 {
  color: #111;
}

.arl-intro p {
  color: #444;
}

/* ===================== COBERTURAS Y BENEFICIOS ===================== */
.arl-coberturas {
  background: #f8f9fa;
}

.arl-coberturas h2 {
  color: #c8102e;
}

.arl-coberturas ul li i {
  color: #c8102e;
}

.arl-coberturas .border {
  border: 1px solid #ddd !important;
}

.arl-coberturas .shadow-sm {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.arl-coberturas .p-4 {
  background: #fff;
  border-radius: 18px;
}

/* ===================== SECCIÓN PRINCIPAL ARL ===================== */
.arl-section {
  width: 100%;
  background: #fff;
}

/* BLOQUE IZQUIERDO */
.arl-info {
  background: linear-gradient(rgba(200, 16, 46, 0.85), rgba(200, 16, 46, 0.85)),
              url('../../img/Sample5.webp') center/cover no-repeat;
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
  padding: 60px 20px;
}

/* BLOQUE FORMULARIO DERECHO */
.formulario-arl {
  background: #fff;
  width: 100%;
  max-width: 550px;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.formulario-arl h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.formulario-arl p {
  font-size: 0.95rem;
  color: #666;
}

/* ===================== CAMPOS DE FORMULARIO ===================== */
.form-label {
  color: #333;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-control, .form-select, textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus, textarea:focus {
  border-color: #c8102e;
  box-shadow: 0 0 5px rgba(200,16,46,0.3);
}

/* ===================== BOTONES ===================== */
.btn-danger {
  background-color: #c8102e;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-danger:hover {
  background-color: #a00e27;
  transform: translateY(-2px);
}

/* ===================== TARJETAS GENERALES ===================== */
.arl-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.arl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ===================== WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 60px;
  height: 60px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .arl-section .row {
    flex-direction: column;
  }

  .arl-info {
    border-right: none;
    border-bottom: 3px solid #c8102e;
    min-height: 300px;
  }

  .formulario-arl {
    max-width: 90%;
    margin: 30px auto;
  }

  .arl-hero {
    height: 50vh;
    padding: 30px 10px;
  }

  .arl-coberturas .row {
    flex-direction: column;
  }
}

/* ===================== MERCANCÍA Y TRANSPORTE ===================== */

/* ===================== HERO ===================== */
.mercancia-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
              url('../../Milenio/img/Sample4.webp') center/cover no-repeat;
  height: 45vh; /* 🔹 Reducido para hacerlo más pequeño */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mercancia-hero h1 {
  font-size: 2.8rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.mercancia-hero p {
  font-size: 1.2rem;
  margin-top: 1rem;
  opacity: 0.9;
}
.mercancia-hero .btn {
  font-weight: 600;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}
.mercancia-hero .btn:hover {
  background: #c8102e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===================== INTRO ===================== */
.mercancia-intro {
  background: #fff;
  color: #333;
  padding: 5rem 0;
}
.mercancia-intro h2 {
  color: #c8102e;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.mercancia-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

/* ===================== TIPOS DE COBERTURA ===================== */
.mercancia-tipos {
  background: linear-gradient(135deg, #c8102e, #8b0b20);
  color: #fff;
  padding: 5rem 0;
}
.mercancia-tipos h2 {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  text-align: center;
}
.mercancia-tipos .card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.mercancia-tipos .card i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.mercancia-tipos .card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

/* ===================== DATOS DESTACADOS ===================== */
.mercancia-stats {
  background: #f8f9fa;
  padding: 5rem 0;
  text-align: center;
}
.mercancia-stats h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #c8102e;
}
.mercancia-stats p {
  color: #555;
  font-weight: 500;
}

/* ===================== BENEFICIOS ===================== */
.mercancia-beneficios {
  background: linear-gradient(135deg, #2c2c2c, #3a3a3a);
  padding: 5rem 0;
}
.mercancia-beneficios h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
}
.beneficio-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  transition: all 0.3s ease;
  color: #fff;
  padding: 2rem;
  text-align: center;
}
.beneficio-box i {
  color: #c8102e;
  font-size: 2rem;
  margin-bottom: 0.8rem;
}
.beneficio-box h5 {
  color: #fff;
  margin-bottom: 0.6rem;
}
.beneficio-box:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
}

/* ===================== CTA FINAL ===================== */
.mercancia-cta {
  background: linear-gradient(rgba(200,16,46,0.85), rgba(0,0,0,0.85)),
              url('../../Milenio/img/Sample3.webp') center/cover no-repeat;
  height: 40vh; /* 🔹 Más pequeño */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.mercancia-cta h2 {
  font-size: 2rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.mercancia-cta .btn {
  font-weight: 600;
  transition: all 0.3s ease;
}
.mercancia-cta .btn:hover {
  background: #c8102e;
  color: #fff;
  transform: translateY(-2px);
}

/* ===================== EFECTOS HOVER GENERALES ===================== */
.hover-card {
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.hover-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-5px);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .mercancia-hero {
    height: 35vh;
    padding: 3rem 1rem;
  }
  .mercancia-hero h1 {
    font-size: 2rem;
  }
  .mercancia-intro h2,
  .mercancia-tipos h2,
  .mercancia-beneficios h2 {
    font-size: 1.8rem;
    text-align: center;
  }
  .mercancia-cta {
    height: 35vh;
    padding: 3rem 1rem;
  }
}

/* ===================== RESPONSABILIDAD CIVIL ===================== */
/* ===================== RESPONSABILIDAD CIVIL ===================== */

/* ===== HERO ===== */
.rc-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('../img/Sample2.webp') center/cover no-repeat;
  height: 50vh; /* Más pequeño */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.rc-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}

.rc-hero p {
  color: #f2f2f2;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* ===== INTRO ===== */
.rc-intro {
  background: #fff;
  color: #333;
}

.rc-intro h2 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #c8102e;
}

.rc-intro p {
  font-size: 1.05rem;
  max-width: 850px;
  margin: 10px auto;
  line-height: 1.7;
}

/* ===== TIPOS DE COBERTURA ===== */
.rc-tipos {
  background: linear-gradient(135deg, #c8102e, #6a0c1e);
  color: #fff;
  padding: 80px 0;
}

.rc-tipos h2 {
  font-weight: 700;
}

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

.tipo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.tipo-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.tipo-card i {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.tipo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

/* ===== CASOS REALES ===== */
.rc-casos {
  background: #f8f9fa;
  padding: 80px 0;
}

.rc-casos h2 {
  color: #c8102e;
  font-weight: 700;
  margin-bottom: 20px;
}

.rc-casos .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.rc-casos .texto {
  flex: 1 1 45%;
}

.rc-casos .imagen {
  flex: 1 1 45%;
}

.rc-casos ul {
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.rc-casos li {
  margin-bottom: 10px;
}

.rc-casos img {
  border-radius: 20px;
  width: 100%;
  height: auto;
}

/* ===== BENEFICIOS ===== */
.rc-benefits {
  background: #fff;
}

.rc-benefits h2 {
  color: #c8102e;
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.benefit-item {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.benefit-item i {
  font-size: 2.5rem;
  color: #c8102e;
  margin-bottom: 15px;
}

/* ===== SECTORES ===== */
.rc-sectores {
  background: linear-gradient(135deg, #111, #222);
}

.rc-sectores h2 {
  font-weight: 700;
  margin-bottom: 30px;
}

.sectores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.sectores-grid div {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 15px;
  border-radius: 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.sectores-grid div:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.sectores-grid i {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.sectores-grid h5 {
  color: #f2f2f2;
}

/* ===== FAQ ===== */
.rc-faq h2 {
  color: #c8102e;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  background-color: #c8102e;
  color: #fff;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ===== CTA FINAL ===== */
.rc-cta {
  background: linear-gradient(135deg, #c8102e, #6a0c1e);
}

.rc-cta h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.rc-cta p {
  max-width: 700px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .rc-casos .container {
    flex-direction: column;
    text-align: center;
  }

  .rc-casos .imagen {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .rc-hero {
    height: 40vh;
    padding: 30px 15px;
  }

  .rc-hero h1 {
    font-size: 2rem;
  }

  .rc-hero p {
    font-size: 0.95rem;
  }
}
