<!-- start Simple Custom CSS and JS -->
<style type="text/css">
/* === VARIABLES DE COLOR Y ESTILOS GLOBALES === */
#rs-secciones-seo {
  --rs-rojo: #bb2e2e;
  --rs-negro: #111111;
  --rs-blanco: #ffffff;
  --rs-gris-fondo: #f9f9fa;
  --rs-gris-borde: #e5e7eb;
  
  font-family: inherit;
  color: var(--rs-negro);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
}

#rs-secciones-seo h2, 
#rs-secciones-seo h3 {
  color: var(--rs-negro);
  margin-bottom: 15px;
  line-height: 1.3;
}

#rs-secciones-seo h2 {
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
}

#rs-secciones-seo strong {
  color: var(--rs-negro);
  font-weight: 700;
}

#rs-secciones-seo a.rs-enlace-texto {
  color: var(--rs-rojo);
  text-decoration: none;
  font-weight: bold;
}

#rs-secciones-seo a.rs-enlace-texto:hover {
  text-decoration: underline;
}

/* === SECCIÓN 2: BANNER GEO-SEO === */
.rs-banner-geo {
  background-color: var(--rs-gris-fondo);
  border-left: 6px solid var(--rs-rojo);
  padding: 35px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 60px;
  font-size: 1.15rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* === SECCIÓN 3 y 4: CUADRÍCULAS (GRIDS) === */
.rs-seccion {
  margin-bottom: 70px;
}

.rs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.rs-tarjeta {
  background: var(--rs-blanco);
  border: 1px solid var(--rs-gris-borde);
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.rs-tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-color: var(--rs-rojo);
}

.rs-icono-svg {
  width: 40px;
  height: 40px;
  fill: var(--rs-rojo);
  margin-bottom: 20px;
}

.rs-tarjeta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.rs-tarjeta p {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  flex-grow: 1;
}

.rs-link-servicio {
  display: inline-block;
  margin-top: 20px;
  color: var(--rs-rojo);
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}

.rs-link-servicio:hover {
  text-decoration: underline;
}

/* === SECCIÓN 5: SOPORTE REDISEÑADO === */
.rs-soporte-box {
  background-color: var(--rs-negro);
  color: var(--rs-blanco);
  padding: 30px; /* Reducido a 30px como pediste */
  border-radius: 12px;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.rs-soporte-content {
  display: flex;
  align-items: center;
  gap: 25px;
  flex: 1;
}

.rs-icono-soporte {
  width: 70px;
  height: 70px;
  min-width: 70px;
  fill: var(--rs-blanco);
}

/* Le agregamos el ID al principio para que le gane al color negro global */
#rs-secciones-seo .rs-soporte-texto h2 {
  color: var(--rs-blanco) !important;
  margin-bottom: 10px;
  text-align: left;
}

.rs-soporte-texto p {
  font-size: 1.05rem;
  margin: 0;
  color: #ddd;
	text-align: justify;
}

.rs-btn {
  display: inline-block;
  background-color: var(--rs-rojo);
  color: var(--rs-blanco) !important;
  padding: 15px 35px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.rs-btn:hover {
  background-color: #9a2222;
}

/* === SECCIÓN 6: PREGUNTAS FRECUENTES === */
.rs-faq-contenedor {
  max-width: 800px;
  margin: 0 auto;
}

.rs-faq-item {
  background: var(--rs-blanco);
  border: 1px solid var(--rs-gris-borde);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.rs-faq-item summary {
  padding: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  outline: none;
}

.rs-faq-item summary::-webkit-details-marker {
  display: none; 
}

.rs-faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--rs-rojo);
  font-weight: 400;
}

.rs-faq-item[open] summary::after {
  content: '−';
}

.rs-faq-item[open] summary {
  border-bottom: 1px solid var(--rs-gris-borde);
  color: var(--rs-rojo);
}

.rs-faq-item p {
  padding: 20px;
  margin: 0;
  color: #444;
}

/* === RESPONSIVE (MÓVILES) === */
@media (max-width: 768px) {
  #rs-secciones-seo h2 {
    font-size: 1.8rem;
  }
  .rs-banner-geo {
    padding: 20px;
    font-size: 1rem;
  }
  /* Ajuste de soporte para móviles */
  .rs-soporte-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  .rs-soporte-content {
    flex-direction: column;
    text-align: center;
  }
  .rs-soporte-texto h2 {
    text-align: center;
  }
	
	.rs-soporte-texto p {
    text-align: center; /* O "left" si lo prefieres en móviles */
  }
}







/*seccion de dominos */
/* === ESTILOS PARA LA SECCIÓN DE CONTINENTES SEPARADA === */
.rs-continentes-caja {
  margin-top: 50px;
  background-color: var(--rs-gris-fondo);
  border: 1px solid var(--rs-gris-borde);
  border-radius: 12px;
  padding: 40px;
}

.rs-continentes-caja h3 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--rs-negro);
}

.rs-continente-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e0e0e0;
}

.rs-continente-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.rs-continente-item h4 {
  font-size: 1.2rem;
  color: var(--rs-rojo);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.rs-continente-item p {
  color: #444;
  margin-bottom: 10px;
}

.rs-link-continente-btn {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--rs-rojo);
  text-decoration: none;
  margin-top: 5px;
}

.rs-link-continente-btn:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rs-continentes-caja {
    padding: 25px 20px;
  }
}


/* Fuerza 2 columnas para secciones de 4 elementos */
@media (min-width: 800px) {
  .rs-grid-2x2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}</style>
<!-- end Simple Custom CSS and JS -->
