body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #8097B7;
}

/* Carrusel */
.carrusel {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.visible {
  display: block;
}

/* Botones */
.botones {
  text-align: right;
  margin: 20px 0;
}

.botones button {
  position: relative;
  margin: 0 10px;
  padding: 10px 20px;
  font-size: 16px;
  border: 2px solid #3498DB;
  background: transparent;
  color: #3498DB;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Fondo animado */
.botones button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: #49273F;
  z-index: -1;
  transition: width 0.4s ease;
}

/* Hover o Click (efecto de relleno) */
.botones button:hover::before,
.botones button:active::before {
  width: 100%;
}

.botones button:hover,
.botones button:active {
  color: white;
}



/* Intro */
.intro {
  padding: 20px;
  text-align: center;
  background: #706F8B;
}

/* Secciones */
.seccion {
  display: flex;
  gap: 20px;
  padding: 30px;
  align-content: right;
}

.lado-a {
  flex-direction: row;
  background-color: #706F8B;
}
.texto-lado-a{
  margin-top: 20%;
}


.lado-b {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 5%;
  margin-left: 5%;
}

.contenido {
  flex-direction: column;
  background-color: #706F8B;
  margin-top: 10%;
}
.contenido{
  background-color: #8097B7;
}

.seccion img {
  width: 500px;
  height: auto;
  border-radius: 8px;
  margin-left: 40%;
}

.seccion h2 {
  margin: 0;
  font-size: 24px;
}

.seccion p {
  max-width: 400px;
}

/* Ajuste para texto y título juntos */
.texto-lado-a {
  max-width: 400px;
}

/* Sección circular */
/* Sección completa en fila */
.semicirculo {
  display: flex;
  align-items: center;
  
  padding: 40px 0; /* sin padding horizontal para evitar centrado */
}

/* Imagen alineada al borde izquierdo del navegador */
.imagen-circular-fija {
  width: 100px;
  height: 200px;
  overflow: hidden;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  border-left: none;
  border: 4px solid #ccc;
  border-left: none;
  flex-shrink: 0;
  position: relative;
  left: 0;
  margin-right: 20px;
}

/* Imagen dentro del semicírculo */
.imagen-circular-fija img {
  width: 150px;
  height: 100%;
  object-fit: cover;
  transform: translateX(-25%);
}

/* Contenido textual centrado como el resto del sitio */
.contenido-texto {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}



