:root {
  --primario: ;
  --sombra-card: rgba() 0px 2px 8px 8px;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about {
  background: #f5f5f5;
  padding: 80px 40px;
}

/* PARTE SUPERIOR */
.about-top {
  display: flex;
  justify-content: center; /* centra todo */
  align-items: center;
  gap: 100px; /* espacio entre texto e imagen */
  margin-bottom: 80px;
}

.about-top h1 {
  font-size: 50px;
  color: rgb(196, 0, 0);
  letter-spacing: 10px;
  line-height: 1.2;
  font-weight: bold;
}

.img-top {
  width: 600px;
  height: auto;
  object-fit: cover;
}

/* PARTE INFERIOR */
.about-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
}

/* TEXTO */
.text {
  max-width: 500px;
}

.text p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 0px;
}

/* línea roja */
.line {
  width: 500px;
  height: 2px;
  background: red;
  margin: 20px 0;
}

/* IMAGEN */
.image img {
  width: 400px;
  height: auto;
  object-fit: cover;
}

/* CARRUSEL */
/* CARRUSEL */
/* CARRUSEL */

.image {
  width: 450px;
}

/* carrusel */
.carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 0.5s;
}

/* imagen visible */
.carousel img.active {
  opacity: 1;
}

/* botones */
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/*  <!-- SEGUNDA SECCIÓN --> */
/*  <!-- SEGUNDA SECCIÓN --> */
/*  <!-- SEGUNDA SECCIÓN --> */
/*  <!-- SEGUNDA SECCIÓN --> */

.mision-vision {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
}

/* imagen como fondo */
.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* overlay rojo */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 25, 25, 0.568);
  z-index: 2;
}

/* contenedor */
.mv-container {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
}

/* caja negra */
.mv-box {
  background: rgba(0, 0, 0, 0.7);
  padding: 50px;
  display: flex;
  gap: 40px;
  max-width: 1000px;
  width: 100%;
  color: white;
}

/* columnas */
.mv-item {
  flex: 1;
}

.mv-item h3 {
  color: red;
  margin-bottom: 15px;
}

.mv-item p {
  line-height: 1.7;
}

/* línea */
.divider {
  width: 1px;
  background: white;
  opacity: 0.5;
}

/*  <!-- TERCERA SECCIÓN --> */
/*  <!-- TERCERA SECCIÓN --> */
/*  <!-- TERCERA SECCIÓN --> */
/*  <!-- TERCERA SECCIÓN --> */

.valores {
  padding: 80px 40px;
  background: #f5f5f5;
}

/* título */
.valores h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  color: #2c3e50;
}

/* contenedor */
.valores-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

/* columnas */
.col {
  flex: 1;
  max-width: 500px;
}

/* items */
.item {
  margin-bottom: 40px;
}

/* títulos */
.item h3 {
  color: #1f4e8c;
  margin-bottom: 10px;
}

/* texto */
.item p {
  color: #333;
  line-height: 1.7;
}
