body{
    background-color: rgb(233, 242, 250);
}
.fondo{
    background-image: url("../img/tecnologia.jpeg");
    background-size: cover;
    min-height: 60vh;
    opacity: 0.8;
        filter: alpha(opacity=50);
        zoom: 1;
    
}


.nav-link, .nav-item{
    color: red;
}
.logo{
    width: 230px;
    margin-left: 20px;
}
.logo:hover{
    transform: scale(1.1);
    transition: 2s;
}
.borde{
    border-color: rgb(231, 162, 14);
    border: solid rgb(252, 252, 252);
}
.borde:hover{
    transform: scale(1.1);
    transition: 1s;
}
.redes{
    width: 30px;
    margin: 10px;
}
.redesf{
    width: 35px;
    margin-top: 30px;
    margin-left: 45px;
    
    
}
.redesf1{
  width: 35px;
  margin-top: 30px;
  margin-left: 65px;
  
  
}
.redesf2{
  width: 35px;
  margin-top: 30px;
  margin-left: 55px;
  
  
}
.flabel{
    margin-top: 35px;
    
    
    
}
.color-f2{
    background-color: #183B4E;
    
}
.logo-f{
    margin: 20px;
    margin-left: 50px;
    margin-right: 100px;
}
.logo-f:hover{
    transform: scale(1.1);
    transition: 1s;
}
.qr{
    width: 100px;
    margin-top: 20px;
    margin-left: 20px;
   
}
.color-f3{
    background-color: #172731;
}
.copy{
    color: beige;
    text-align: center;
    margin: 10px;
}
.pf-2{
    color: beige;
    font-weight: bold;
    text-align: justify;
    margin-top: 20px;
    margin-left: 25px;
    
    
}
.pq-r{
    margin-left: 20px;
    padding-top: 5px;
    color: antiquewhite;
}
.lista, a{
    text-decoration: none;
    list-style: none;
    text-align: start;
    color: aliceblue;
    transition: 0.3s;
    
}
.lista>a:hover{
    cursor: pointer;
    color: aqua;
    list-style-image: linear-gradient(to left bottom, red, blue);
    font-weight: 400;
}
.carusel-fotos>img{
  max-height: 70vh;
  object-fit: cover;
  
  
}
@media screen and (max-width: 1024px){
  .carusel-fotos>img {
    max-height: 40vh;
  }
}

@media (max-width:600px) {
  .carusel-fotos>img{
    max-height: 500px;
    
  }
  
}
.texto >h1{
    text-align: center;
    margin: 20px;
    font-size: 45px;
    color: rgb(250, 73, 73);
    text-shadow: 3px 3px 4px rgb(56, 55, 55);
}

.agustin{
    width: 300px;
    
   
}
.frase{
    font-size: 40px;
    color: rgb(65, 64, 64);
}
.fondo-frase{
    background-color: #ADEED9;
       
}
.niveles{
    width: 250px;
    margin-top: 0px;
    margin-left: 60px;
    margin-right: 30px;
    margin-bottom: 35px;
    
   
    transition: .5s;
    
}
.niveles:hover{
    transform: scale(1.1);
}
.f-primaria{
    text-align: center;
    font-size: 30px;
    padding: 0;
    
    
    
}
.f-inicial{
    text-align: center;
    
    font-size: 30px;
   
}
.f-secundaria{
    font-size: 30px;
    padding: 0;
    
}
/*formulario pop*/
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .form-container {
    position: relative;
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px; /* Más pequeño */
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .form-header h2 {
    margin: 0 auto;
  font-size: 18px;
  color: #333;
  text-align: center;
  flex-grow: 1;
  }
  
  .close-button {
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close-button:hover {
    color: #000;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 4px;
    font-size: 14px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
  }
  
  .form-group textarea {
    min-height: 70px;
  }
  
  .form-group button {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .form-group button:hover {
    background-color: #218838;
  }
  
  .success-message {
    text-align: center;
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    display: none;
  }
  
  @media (max-width: 480px) {
    .form-container {
      max-width: 90%;
      padding: 20px;
    }
  }

  .img-d{
    width: 480px;
    height: auto;
    margin-top: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7)
    
  }
  @media (max-width: 700px) {
    .img-d {
      width: 87%;
      margin-top: 30px;
    }
  }


/* Distinctions Section */
.distinctions {
  background-color: var(--white);
  padding: 2rem 0;
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
  margin-top: 3rem;
}

.distinctions-grid {
  display: grid;
  grid-template-columns: repeat(2, 2fr);
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.distinction-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--background-light);
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.distinction-card:hover {
  transform: translateY(-5px);
}

.distinction-card img {
  width: 70px;
  height: auto;
  margin-bottom: 1rem;
}

.distinction-card h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.distinction-card p {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}
.par-1{
  text-align: justify;
}
.btn2{
  color: rgb(41, 40, 40);
  font-size: 18px;
  transition: 0.3s;
 
  margin-bottom: 30px;
  margin-top: 20px;
  padding: 4px;
  border-radius: 7px;
}
.btn2:hover{
  text-decoration: underline;
  color: red;
  border: 0;
}
.resgistrate{
 margin-right: 30px;
}
.iframe{
  width: 85%;
  height: 350px;
}
.animado {
  display: inline-block;
  animation: moverIzquierda 3s ease-in-out infinite alternate;
}

@keyframes moverIzquierda {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-15px);
  }
}
#btnSubir {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  font-size: 24px;
  text-align: center;
  line-height: 45px;
  display: none;
  transition: all 0.3s ease-in-out;
}
#whatsapp-container {
  position: fixed;
  bottom: 30px;
  left: 60px;
  z-index: 10000;
}

#whatsapp-button {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s;
}

#whatsapp-button:hover {
  transform: scale(1.1);
}

#whatsapp-message {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 90;
  width: 250px;
  font-size: 14px;
}
@media (max-width: 576px) {
  #btnSubir,
  #whatsapp-container {
    display: none !important;
  }
}
