/*===============================================================================================
====================================EXTRAS=======================================================
==============================================================================================*/




/*.relief {
position: relative;
background: linear-gradient(to right, #24243e, #141E30, #0f0c29);
background-clip: text;
-webkit-text-fill-color: transparent; }

.relief:before,
.relief:after {
content: attr(data-text);
position: absolute;
top: 0;
left: 0; }

.relief:before {
z-index: -1;
text-shadow: -0.001em -0.001em 1px rgba(255,255,255,.15)}

.relief:after {
z-index: -2;
text-shadow: 10px 10px 10px rgba(0,0,0,.5), 20px 20px 20px rgba(0,0,0,.4), 30px 30px 30px rgba(0,0,0,.1);
mix-blend-mode: multiply; }*/




*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

:root {
  --blue-color: #4897d8;
  --yellow-color: #ffdb5c;
  --red-color: #fa6e59;
  --orange-color: #f8a055;
  --white-color:#ffffff;
  --black-color: #262626;  
}

.container{
background-color: var(--blue-color);  
width: 100%;
min-height: 100dvh;
display:flex;
flex-direction: column;
justify-content: space-between;


}

/*=======================================================================================================================
====================================HEAder==============================================================================
=====================================================================================================================*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: var(--red-color);
    z-index: 100;
}


header .logo{
  max-width: 5rem;
}


header .nav-list{
  list-style-type: none;
  display: flex;
  gap: 1.5rem;
}

header .nav-list li a {
  text-decoration: none;
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: -1px -1px 0px #000;
}

header .nav-list li a:hover {
  color: var(--black-color);
  transition: all 0.3s cubic-bezier(0.000, 0.000, 0.230, 1);
  background-position: 0%;    
}

header .abrir-menu,
header .cerrar-menu {
    display: none;
}


@media screen and (max-width: 550px) {
    header .abrir-menu,
    header.cerrar-menu {
        display: block;
        border: 0;
        font-size: 1.25rem;
        background-color: transparent;
        cursor: pointer;
    }

    header .abrir-menu {
        color: var(--white-color);
    }

    header .cerrar-menu {
        color:var(--white-color);
    }

    header .nav {
        opacity: 0;
        visibility: hidden;
        display: flex;
        width: 50%;
        flex-direction: column;
        align-items: end;
        gap: 1rem;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: var(--red-color);
        padding: 2rem;
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, .5);
    }

    header .nav.visible {
        opacity: 1;
        visibility: visible;
    }
    
    header .nav-list {
        flex-direction: column;
        align-items: end;
    }

    header .nav-list li a {
        color: #ecececec;
    }
}



.principal{
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
}

.principal .up{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin: auto;
  gap: 3rem;
  padding: 2rem;
}



.principal .text{
  color: var(--white-color);
  text-align: justify;
  width: 50%;
 
}
.principal .text h1{
  text-align: center;
  text-shadow: 2px 2px 0px var(--orange-color), 5px 4px 0px rgba(0,0,0,0.15);
  color: var(--yellow-color);
  
}

.principal .image img{
  width:100%;
}




@media screen and (max-width: 550px){
    .principal .up{
      flex-direction: column;
      width: 90%;
      gap: 1rem;
      padding: 1rem;
    }
    .principal .text{
      width: 100%;
    }
   
  }

.down{
  display: flex;
  justify-content: center;
  align-items: center;
  
  
}

.down a {
  position: relative;
  display: inline-block;
  padding: 25px 30px;
  margin: 40px 0;
  color: #03e9f4;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.5s;
  letter-spacing: 4px;
  overflow: hidden;
  margin-right: 50px;
}
.down a:hover {
  background: #03e9f4;
  color: #050801;
  box-shadow: 0 0 5px #03e9f4, 0 0 25px #03e9f4, 0 0 50px #03e9f4,
    0 0 200px #03e9f4;
  -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
}
.down a:nth-child(1) {
  filter: hue-rotate(270deg);
}
.down a:nth-child(2) {
  filter: hue-rotate(110deg);
}
.down a span {
  position: absolute;
  display: block;
}
.down a span:nth-child(1) {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03e9f4);
  animation: animate1 1s linear infinite;
}
@keyframes animate1 {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 100%;
  }
}
.down a span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #03e9f4);
  animation: animate2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes animate2 {
  0% {
    top: -100%;
  }
  50%,
  100% {
    top: 100%;
  }
}
.down a span:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #03e9f4);
  animation: animate3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes animate3 {
  0% {
    right: -100%;
  }
  50%,
  100% {
    right: 100%;
  }
}

.down a span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #03e9f4);
  animation: animate4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes animate4 {
  0% {
    bottom: -100%;
  }
  50%,
  100% {
    bottom: 100%;
  }
}




/*========================================================================================================================
==================================================FOOTER++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
========================================================================================================================*/

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 20px;
  background-color: var(--red-color);
  border-top: 1px solid rgba(255, 255, 255, 0.1);

}
.footer-left {
  font-size: 16px;
  display: flex;
}
.footer-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer-logo {
  width: 50px;
  height: 30px;

  padding: 0px 10px;
}

.text-footer {
  background-image: linear-gradient(to right, #00F260, #f79d00, #0575E6, #64f38c);
  -webkit-background-clip: text; 
  background-clip: text; 
  color: transparent;
  
  background-size: 300%;
  background-position: -100%;  
  
  animation: animatedText 5s infinite alternate-reverse;
}

@keyframes animatedText{
  to{
    background-position: 100%; 
  }
}

@media screen and (max-width: 550px){
    .footer {
      padding: 10px;
      flex-direction: column;
           
    }
    .footer-left {
      text-align: center;
      padding-bottom: 1rem;
    }
  }


/* =========================================================================================================================================
================================ABOUT US====================================================================================================
============================================================================================================================================*/

.slider h2{
padding-top: 2rem;  
color: var(--white-color);
text-align: center;
}

.carrusel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.carrusel {
    overflow: hidden;
    height: 800px;
    width: 500px;
}

.contenedorImg {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
    
}
.contenedorImg > img {
    object-fit: cover;
    height: 800px;
    width: 500px;
}




.aboutus{
  display: grid;
  grid-template-columns:repeat(4, 1fr);  
  gap: 2rem;
  padding: 2rem;
  justify-content: space-around;
  align-items: center;
}

.aboutus h2{
  text-align: center;
  text-shadow: 2px 2px 0px var(--orange-color), 5px 4px 0px rgba(0,0,0,0.15);
  color: var(--yellow-color);
  padding: 1rem;
}

.aboutus p,
.aboutus li{
  color: var(--white-color);
  text-align: justify;
  padding: 1rem;
  list-style-type: none;
}

.aboutus img{
  width: 80%;
  display: block;
  margin: auto; 
  box-shadow: 5px 5px 15px 5px #000000;
}
.aboutus .mission{    
  grid-column: 1/3;
}
.aboutus .vision{
  grid-column: 3/5;
}
.aboutus .objetives{
  grid-column: 2/4;
}

@media screen and (max-width: 550px){
    .aboutus{
      grid-template-columns: 1fr;
      justify-content: center;

    }
    .aboutus .mission{    
      grid-column: 1/5;
    }
    .aboutus .vision{
       grid-column: 1/5;
    }
    .aboutus .objetives{
       grid-column: 1/5;
    }

}

/* =========================================================================================================================================
================================SERVICES====================================================================================================
============================================================================================================================================*/

.services{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  text-align: center;
}

.services h4{
  color: var(--white-color);
  width:70%;
  
}
.services img{
  width: 100%;
  display: block;
  margin: auto;
  padding: 1rem;
  border-radius: 30px;
}

.services .info{  
  width: 70%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.services .personalized,
.services .safe,
.services .focused{
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 1rem;
}

.services .info p{
  color: var(--white-color);
  padding: 1rem;
  text-align: justify;
}

.services .info h3{
  color: var(--orange-color);
  text-align: center;
}

@media screen and (max-width: 550px){
  .services .info{  
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services h4{
    width:90%;  
  }
}

/* =========================================================================================================================================
================================TESTIMONIALS====================================================================================================
============================================================================================================================================*/



.testimonials{
  
  width: 100%;
  margin: auto;
  text-align: center;
  color: var(--white-color);
  padding: 2rem;
}
#star-rating span {
  font-size: 2rem;
  cursor: pointer;
  color: gray;
}

#star-rating span.hover,
#star-rating span.selected {
  color: gold;
}




/* =========================================================================================================================================
================================ACTIVITIES====================================================================================================
============================================================================================================================================*/

.activities{
  
  width: 90%;
  margin: auto;
}
.info{
  background-color: rgba(0,0,0,0.2);
  border-radius: 15px;
  color: var(--white-color);
  padding: 1rem;
  margin-bottom: 2rem;
}

.activities h2{
  text-align: center;
  color: var(--white-color);
  text-shadow: 2px 2px 0px var(--orange-color), 5px 4px 0px rgba(0,0,0,0.15);
  padding: 2rem;
}
.info .photos{
 
  display: flex;
  justify-content: space-around;
  padding: 1rem;
  gap: 1rem;
  width: 100%;
 
}

.info .photos img{
  width: 20%;
  height: auto;
  border-radius: 15px;
  box-shadow: 5px 4px 0px rgba(0,0,0);
}

.info h3{
  font-size: 30px;
  color: var(--orange-color);
  padding: 1rem 0;
}
.info h4{
  font-size: 20px;
  color: var(--white-color);
}


@media screen and (max-width: 550px){
  .info .photos{
 
  flex-direction: column;
  justify-content:center;
  align-items: center;
}
.info .photos img{
  width: 80%;

}

}

/* =========================================================================================================================================
================================ACTIVITIES====================================================================================================
============================================================================================================================================*/

.formulario{
  background-color: #f79d00;
  width: 40%;
  margin: auto;
  padding: 2rem;
  text-align: center;
}





.upload{
  
  width: 60%;
  margin: auto;
  padding: 2rem;
  
}

.comeback{
 
  text-align: center;
}
.comeback a{
  text-decoration: none;
  color: #00F260;
  padding: 1rem;
  background-color: #000;
  border-radius: 30%;
}





.form-container {
 
  max-width: 500px;
  margin: auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.form-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #555;
}

input[type="text"],
textarea,
select,
input[type="file"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007bff;
  outline: none;
}

button  {
  
  padding: 0.9rem;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background: #0056b3;
}

.cards{
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  
  
}

.cards .card{
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  box-shadow: 5px 5px 10px 5px #000000;
 
}

.cards .card h3{
  color: var(--orange-color);
  text-align: start;
  color: #000000;
  padding: 1rem;
 
}

.cards .card h4{
  text-align: justify;
  padding: 1rem;
}
.cards .card p{
  color: #efb810;
  
}

.cards .card img{
  border-radius: 50%;
  width: 100px;
  

}
.cards .card h4 .stars{
  color: #00F260;
}

@media screen and (max-width: 550px){
  .cards{
  padding: 1rem;
  grid-template-columns: repeat(1, 1fr);
  
}







}