/* Variables de color y tipografía */
:root {
    --color-primary: #7AC1E1;
    --color-secondary: #C6C5C5;
    --color-accent: #3B89AC;
    --color-dark: #303031;
    --font-roboto: 'Roboto', sans-serif;
}


.quien-es-victor {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px; /* Más espacio superior e inferior */
    padding-top: 90px;
  }
  
  .quien-es-victor .content {
    display: flex;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap; /* Para que los elementos se reorganicen en dispositivos pequeños */
    align-items: center; /* Centrar contenido verticalmente */
  }
  
  .quien-es-victor .text {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centrar verticalmente el texto */
    text-align: justify;
    color: var(--color-dark); /* Letras blancas */
  }
  
  .quien-es-victor .text h2 {
    font-size: 42px; /* Título más grande */
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-accent); /* Letras blancas */
    text-transform: uppercase;
  }
  
  .quien-es-victor .text p {
    font-size: 18px; /* Texto ligeramente más grande */
    line-height: 1.8;
    color: var(--color-dark); /* Letras blancas */
  }
  
  .quien-es-victor .image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quien-es-victor .image img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
  }
  .image-text-section {
  width: 100%;
  padding: 60px 20px;
   background: linear-gradient(to bottom,
     /* desvanecido arriba */
    var(--color-dark) 30%,     /* color base al centro */
    var(--color-dark) 70%,
    rgba(37, 37, 37, 0.626) 110% /* desvanecido abajo */
  );
  font-family: var(--font-roboto);
}

.image-text-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.image-side, .text-side {
  flex: 1 1 50%;
  box-sizing: border-box;
  padding: 20px;
}

.image-side img {
  width: 90%;
  height: 80%;
  border-radius: 10px;
}

.text-side h2 {
 font-size: 42px; /* Título más grande */
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--color-primary); /* Letras blancas */
    text-transform: uppercase;
}

.text-side p {
  font-size: 18px;
  color: var(--color-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}




  /* Estilos responsivos */
  @media (max-width: 768px) {
    .body{
      align-items: center;
    }
    .quien-es-victor .content {
      flex-direction: column; /* Cambiar la orientación a columna en dispositivos pequeños */
      text-align: center; /* Centrar el texto */
      padding: 0px 20px; /* Reducir el padding en pantallas pequeñas */
    }
  
    .quien-es-victor .text {
      text-align: justify; /* Justificar texto en pantallas pequeñas */
    }

    .quien-es-victor .image img {
        max-width: 125%;
      }

      .quien-es-victor .text h2 {
        font-size: 27px; /* Título más grande */
        text-align: center;
      }
      .image-side, .text-side {
        flex: 1 1 100%;
        text-align: center;
      }
     .text-side
     {
      padding: 30px 20px;
     }
   .text-side h2 {
    font-size: 1.5rem;
    text-align: center;
     }
     .text-side p {
      
    font-size: 1rem;
    text-align: justify;
     }
     .image-text-section{
      margin-left: -10px;
      padding: 10px 5px;
     }
  }