

/*====================================
  SECCION DEL HOME
======================================*/
.home-section {
  background: url('../assest/img/home.jpg') center/cover no-repeat;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-overlay {
  background-color: rgba(0, 0, 0, 0.2); 
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 100px; 
}

.home-text {
  color: #fff;
  max-width: 600px;
  animation: fadeInLeft 1s ease;
}

.home-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.home-text h2 {
  text-align: center;
}

.home-text p {
  font-size: 1.5rem;
  line-height: 1.1;
  text-align: justify;
  margin: 10px;
}


/* ========== RESPONSIVE (≤768px) ========== */
@media (max-width: 768px) {


/*=============================================
    RESPONSIVE HOME
===============================================*/
  

  .home-section {
    justify-content: center;
    text-align: center;
  }

  .home-overlay {
    padding: 0 20px;
    justify-content: center;
  }

  .home-text {
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
  }
  .home-text p{
    font-size: 1.2rem;
  }

  .home-section {
    
    height: 100vh;

  }
  .parrafo-home-3{
    display: none;
  }


}
