/* Fuente 1: Quicksand */
@font-face {
  font-family: 'Quicksand';
  src: url('fonts/Quicksand-Regular.ttf') format('truetype');
  /* Ajusta según el archivo que descargaste */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Quicksand';
  src: url('fonts/Quicksand-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Fuente 2: League Spartan */
@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'League Spartan';
  src: url('fonts/LeagueSpartan-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

/* Font Google - strong reaload time */
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,200,300,700,900&subset=latin,latin-ext);

/* Configuración global */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'League Spartan', sans-serif;
  font-size: 15px;
  -webkit-font-smoothing: subpixel-antialiased !important;
  color: black;
  font-weight: 400;
  min-height: 100%; /* Permite crecer según el contenido */
  overflow-x: hidden; /* Evita el scroll horizontal */
}

/* Contenedor principal */
.container {
  position: relative; /* Manténlo dentro del flujo normal */
  width: 100%;
  min-height: 100vh; /* Asegura que cubra al menos la pantalla completa */
  display: flex; /* Opcional: Si necesitas organizar contenido */
  flex-direction: column; /* Asegura que los hijos se apilen */
}


a {
  text-decoration: none;
  outline: none;
}

h1 {
  font-size: 56px;
  color: #EAF2F2;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}

p {
  font-size: 19px;
  color: #EAF2F2;
  margin-top: 50px;
}


h1 span {
  color: #087C83;
}


::selection {
  background: #EAF2F2;
  color: #087C83;
}

::-moz-selection {
  background: #EAF2F2;
  color: #087C83;
}

/*Whatsaap*/

.float {
  position: fixed;
  width: 80px; 
  height: 80px; 
  bottom: 40px;
  right: 40px;
  background-color: #00A39C;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 40px; /* Tamaño del ícono aumentado */
  box-shadow: 2px 2px 3px #999;
  z-index: 1200;
  animation: colorChange 2s infinite;
}

.float:hover {
  text-decoration: none;
  color: #FFF;
  background-color: #25d366;
  animation: shake 1s;
  animation-iteration-count: infinite;
}

.float i{
  margin-top: 21px;
}

.my-float {
  margin-top: 16px;
}

@keyframes colorChange {
  0% {
    background-color: #00A39C; /* Color inicial */
  }
  50% {
    background-color: #002C2B; /* Segundo color */
  }
  100% {
    background-color: #00A39C; /* Regresa al color inicial */
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* Start page */

.start-page {
  position: relative;
  width: 100%;
  height: 580px;
  background: url('../img/background/start-page.jpg') 0px 0px fixed;
}

.start-page .opacity {
  position: absolute;
  width: 100%;
  height: 580px;
  background: rgba(0, 0, 0, 0.7);
}


.start-page .content {
  position: relative;
  margin: 0 auto;
  height: 580px;
}

.start-page .content .text {
  position: absolute;
  text-align: center;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 320px;
}

.start-page .content .text {
  position: absolute;
  text-align: center;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 320px;
}

.start-page .content .text .read-more {
  width: 183px;
  height: 47px;
  margin: 50px auto;
  line-height: 47px;
  border: 1px solid #EAF2F2;
  text-transform: uppercase;
  color: #EAF2F2;
  cursor: pointer;
  font-size: 19px;
  background: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.start-page .content .text .read-more:hover {
  color: black;
  background: #EAF2F2;
}

.start-page .content .arrow-down {
  position: absolute;
  bottom: 110px;
  left: 50%;
  margin-left: -10px;
  width: 21px;
  height: 29px;
  background: url(../img/arrow-down.png) no-repeat center center;
  display: block;
  -webkit-animation: bounce-fade 1.2s infinite;
  /* Safari 4+ */
  -moz-animation: bounce-fade 1.2s infinite;
  /* Fx 5+ */
  -o-animation: bounce-fade 1.2s infinite;
  /* Opera 12+ */
  animation: bounce-fade 1.2s infinite;
  /* IE 10+ */
}


@-webkit-keyframes bounce-fade {
  0% {
    opacity: 0;
    bottom: 70px;
  }

  100% {
    opacity: 1;
    bottom: 35px;
  }
}

@-moz-keyframes bounce-fade {
  0% {
    opacity: 0;
    bottom: 70px;
  }

  100% {
    opacity: 1;
    bottom: 35px;
  }
}

@-o-keyframes bounce-fade {
  0% {
    opacity: 0;
    bottom: 70px;
  }

  100% {
    opacity: 1;
    bottom: 35px;
  }
}

@keyframes bounce-fade {
  0% {
    opacity: 0;
    bottom: 70px;
  }

  100% {
    opacity: 1;
    bottom: 35px;
  }
}


/* Menu mobile */

.menu-media {
  position: relative;
  width: 100%;
  height: 90px;
  background: #002C2B;
  z-index: 1000;
  display: none;
}

.menu-media .menu-content {
  width: 90%;
  position: relative;
  margin: 0 auto;
  margin-right: 5%;
}

.menu-media .menu-content .logo {
  color: #EAF2F2;
  font-weight: 700;
  font-size: 28px;
  width: 246px;
  line-height: 90px;
  float: left;
  list-style: none;
}

.menu-media .menu-content .icon {

  width: 41px;
  height: 23px;
  float: right;
}

/* General Styles */
.menu-click {

  left: 0;
  width: 100%;
  /* Ocupa todo el ancho */
  background: #00A39C;
  /* Fondo oscuro */
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  /* Ocultamos inicialmente */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Sombra para dar profundidad */
}

.menu-click a {
  text-decoration: none;
  /* Quitar subrayado */
}

.menu-click li {
  padding: 15px 20px;
  /* Espaciado interno */
  text-align: center;
  /* Centrar el texto */
  font-size: 18px;
  /* Tamaño de fuente */
  font-weight: bold;
  /* Negrita */
  color: #eaf2f2;
  /* Texto claro */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* Línea sutil */
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  /* Transiciones suaves */
}

/* Hover Effect */
.menu-click li:hover {
  background: #087c83;
  /* Color de fondo al pasar el mouse */
  color: #ffffff;
  /* Texto más brillante */
}

/* Último elemento sin borde */
.menu-click li:last-child {
  border-bottom: none;
}


/* Menu */
/* Estilo principal del menú */
.menu {
  position: relative;
  width: 100%;
  height: 90px;
  background: #002C2B;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Contenedor del contenido del menú */
.menu-content {
  width: 100%;
  max-width: 1200px;
  /* Máximo ancho para el contenido */
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo del menú */
.menu-content .logo {
  color: #EAF2F2;
  background: #002C2B;
  font-weight: 700;
  font-size: 30px;
  float: left;
  list-style: none;
}

.logo img {
 
  height: 81px;
  /* Mantendrá las proporciones de la imagen */
  display: block;
  /* Elimina espacios debajo de la imagen */
  margin: 0 auto;
  /* Centra la imagen si es necesario */
}


/* Estilo de la lista de navegación */
.menu-content ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: auto;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-right: 50px;
}

/* Estilo de cada enlace en la barra de navegación */
.menu-content li {
  position: relative;
  display: inline-block;
}

.menu-content li a {
  color: white;
  font-size: 15px;
  display: block;
  padding: 0 18px;
  line-height: 90px;
  text-decoration: none;
  transition: all 0.2s ease-in;
}

/* Efecto de hover en los enlaces */
.menu-content li a:hover {
  color: white;
  background-color: #04817b;
  /* Fondo oscuro al pasar el mouse */
}

/* Resaltar el enlace activo */
.menu-content li.active a {
  background-color: #04817b;
}

/* Estilos para el menú en pantallas pequeñas */
.menu-click {
  display: none;
}

/* About us */

.about-us {
  position: relative;
  width: 900px;
  margin: 0 auto;
  margin-bottom: 10px;

}

.about-us h2 {
  font-size: 56px;
  color: black;
  text-align: center;
  margin-top: 50px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;

}

.about-us hr {
  color: black;
  margin-top: 30px;
  background-color: black;
  height: 1px;
  border: 0;

}

.about-us p.title {
  color: #919191;
  margin-top: 40px;
  width: 100%;
  font-size: 15px;
  text-align: center;
}

.about-us h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 29px;
  color: black;
  line-height: 1.2;
  width: 100%;
  position: relative;
  font-weight: bold;
}

.about-us p {
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  width: 100%;
  color: #919191;
  line-height: 1.4;
  position: relative;
  font-weight: 400;
}

.about-us .column-one {
  margin-top: 40px;
  width: 300px;
  float: left;
  margin-bottom: 70px;
  height: 350px;
}

.about-us .column-one .circle-one {
  height: 174px;
  position: relative;
  margin: 0 auto;
  border: 8px solid #ebebeb;
  background: url(../img/icons/responsive.png) #f3f3f3 no-repeat center center;
  -moz-border-radius: 174px;
  -webkit-border-radius: 174px;
  border-radius: 174px;
  width: 174px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.about-us .column-one .circle-one:hover {
  background: url(../img/icons/responsive.png) #087C83 no-repeat center center;

}

.about-us .column-two {
  margin-top: 40px;
  width: 300px;
  float: left;
  margin-bottom: 70px;
  height: 350px;
}

.about-us .column-two .circle-two {
  height: 174px;
  position: relative;
  margin: 0 auto;
  border: 8px solid #ebebeb;
  background: url(../img/icons/minimalist.png) #f3f3f3 no-repeat center center;
  -moz-border-radius: 174px;
  -webkit-border-radius: 174px;
  border-radius: 174px;
  width: 174px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.about-us .column-two .circle-two:hover {
  background: url(../img/icons/minimalist.png) #087C83 no-repeat center center;
}


.about-us .column-three {
  margin-top: 40px;
  width: 300px;
  float: left;
  margin-bottom: 70px;
  height: 350px;
}

.about-us .column-three .circle-three {
  height: 174px;
  position: relative;
  margin: 0 auto;
  border: 8px solid #ebebeb;
  background: url(../img/icons/free.png) #f3f3f3 no-repeat center center;
  -moz-border-radius: 174px;
  -webkit-border-radius: 174px;
  border-radius: 174px;
  width: 174px;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.about-us .column-three .circle-three:hover {
  background: url(../img/icons/free.png) #087C83 no-repeat center center;
}



/* Portfolio */


.portfolio {
  position: relative;
  width: 100%;
  background: #002C2B;

}

.portfolio .portfolio-margin {
  position: relative;
  width: 900px;
  overflow: hidden;
  margin: 0 auto;
}

.portfolio .portfolio-margin .read-more {
  width: 183px;
  height: 47px;
  position: relative;
  margin: 50px auto;
  line-height: 47px;
  border: 1px solid #EAF2F2;
  text-transform: uppercase;
  text-align: center;
  color: #EAF2F2;
  cursor: pointer;
  font-size: 19px;
  background: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.portfolio .portfolio-margin .read-more:hover {
  color: black;
  background: #EAF2F2;
}

.portfolio .portfolio-margin h2 {
  font-size: 56px;
  color: #EAF2F2;
  padding-top: 50px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;

}

.portfolio .portfolio-margin hr {
  color: black;
  margin-top: 30px;
  background-color: #EAF2F2;
  height: 1px;
  border: 0;
}

/* Portfolio grid */

.grid {
  margin-top: 70px;
  width: 100%;
  position: relative;
  margin-bottom: 70px;
  overflow: hidden;
}

.grid li {
  width: 300px;
  height: 225px;
  float: left;
  position: relative;
  overflow: auto;
}

.grid img {
  width: 100%;
  height: 225px;
  float: left;
  position: relative;
}

.grid .text {
  position: absolute;
  width: 300px;
  height: 225px;
  background: #087C83;
  z-index: 2;
  opacity: 0;
}

.grid p {
  font-size: 29px;
  text-align: center;
  margin-top: 80px;
  font-weight: bold;
  color: #EAF2F2;
}

.grid p.description {
  font-size: 15px;
  width: 300px;
  margin-top: 20px;
  text-align: center;
  font-weight: 400;
  color: #EAF2F2;
}

.clear {
  clear: both;
}

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);

  /* Flexbox for centering */
  align-items: center;
  justify-content: center;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  animation: fadeIn 0.5s;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Partners */

.partners {
  position: relative;
  width: 100%;
  min-height: 620px;
  margin-top: 15px;
  background: url('../img/background/partners.jpg') 0px 0px fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners .opacity {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}

.partners .content {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
}

.partners h2 {
  color: #EAF2F2;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

.partners .logo-container {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.partners .logo-item {
  text-align: center;
  max-width: 250px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.partners .logo-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.partners .logo-item img {
  width: 90px;
  height: 90px;
  opacity: 0.8;
  transition: opacity 0.2s ease-in;
}

.partners .logo-item img:hover {
  opacity: 1;
}

.partners .logo-item h3 {
  margin-top: 26px;
  font-size: 1.2rem;
  color: #EAF2F2;
}

.partners .logo-item p {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #d1d1d1;
  line-height: 1.5;
}

/* Móviles */
@media (max-width: 768px) {
  .partners .logo-container {
    flex-direction: column;
    align-items: center;
  }

  .partners h2 {
    font-size: 2.5rem;
  }

  .partners .logo-item {
    width: 90%;
  }
}



/* Contact */

.contact {
  position: relative;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.contact h2 {
  font-size: 56px;
  color: black;
  padding-top: 50px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact hr {
  margin-top: 30px;
  background-color: black;
  height: 1px;
  border: 0;
}

.contact .content {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 60px 0 65px 0;
}

.contact .content .form {
  width: 40%;
  overflow: hidden;
  height: auto;
  float: left;
}

.contact .content .contact-text {
  width: 55%;
  overflow: hidden;
  height: auto;
  float: left;
  padding-left: 40px;
  color: black;
  font-size: 17px;
  line-height: 1.7;
}

strong {
  font-weight: 700;
}

input {
  width: 100%;
  height: 40px;
  background: #23282d;
  border: 0;
  color: #eaf2f2;
  font-weight: bold;
  line-height: 40px;
  padding-left: 35px;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}

textarea {
  width: 100%;
  height: 283px;
  background: #23282d;
  border: 0;
  color: #eaf2f2;
  font-weight: bold;
  padding: 15px 0 0 35px;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
}

.boton-mensaje {
  text-align: center;
  /* Centra el botón en su contenedor */
  margin-top: 20px;
  /* Espacio superior */
  width: 100%;
  /* Asegura que ocupe todo el ancho disponible */
}

.contact .content .form .button {
  display: inline-block;
  width: 200px;
  /* Ajusta el tamaño según el texto */
  padding: 12px 24px;
  /* Más espacio interno */
  margin: 0 auto;
  /* Centra el botón */
  background: #087c83;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact .content .form .button:hover {
  background: #05a4ac;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  /* Incrementa la sombra */
}


/* Responsividad */

/* Para dispositivos pequeños (móviles) */
@media (max-width: 767px) {
  .contact {
    width: 90%;
  }

  .contact .content {
    width: 100%;
    display: block;
  }

  .contact .content .form,
  .contact .content .contact-text {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 20px;
  }

  input,
  textarea {
    width: 90%;
  }

  .boton-mensaje {
    text-align: center;
    margin-top: 10px;
  }

  .contact .content .form .button {
    width: 90%;
    /* Botón ocupa casi todo el ancho */
    font-size: 14px;
    /* Reduce el tamaño del texto */
    padding: 10px;
    /* Reduce el espacio interno */
  }

  iframe {
    width: 95%;
    height: 450px;
    /* Altura ajustada para pantallas pequeñas */
  }
}

/* Para tablets (pantallas medianas) */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact {
    width: 90%;
  }

  .contact .content {
    width: 100%;
  }

  .contact .content .form,
  .contact .content .contact-text {
    width: 48%;
    float: left;
  }

  .contact .content .contact-text {
    padding-left: 20px;
  }

  .boton-mensaje {
    text-align: center;
    margin-top: 15px;
  }

  .contact .content .form .button {
    width: 80%;
    /* Ajusta el ancho para tablets */
    font-size: 15px;
    /* Ajusta el tamaño del texto */
    padding: 12px;
    /* Ajusta el espacio interno */
  }

  iframe {
    width: 100%;
  }
}

footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.lineahr{
  margin: 20px 15% 0 ;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 15px;
}

.social-icons a {
  color: #00A39C;
  font-size: 35px;
}
.copyright {
  font-size: 12px;
  margin-bottom: 20px;
}
.copyright p {
  color: #00A39C;
  margin-top: 30px;
}

@media (max-width: 640px) {
  footer {
    font-size: 12px;
  }
  .copyright {
    font-size: 10px;
  }
  .social-icons a {
    font-size: 28px;
  }

  .footer-links p{
    font-size: 14px;
  }
}

