@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.cursor {
  position: absolute;
  width: 40px;
  height: 40px;
  border: 2px solid black;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 10000;
  transition: transform 0.1s ease-out otros elementos;
}

.elemento-animado {
  opacity: 0;
  /* Inicialmente invisible */
  position: relative;
  bottom: -50px;
  /* Fuera de la vista hacia abajo */
  animation: aparecer 0.5s ease-in-out forwards;
  /* Duración y tipo de animación */
}

.pic {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  margin-bottom: 20px;
  border: 2px solid #549537;
  border-radius: 50%;
  position: relative;
}
.pic::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid #549537;
  left: 0;
  top: 0;
  box-sizing: border-box;
  border-radius: 50%;
  animation: wave 1.5s infinite linear;
}

.cta-button {
  display: flex;
  align-items: center;
}
.cta-button i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease-in-out;
  transform: scale(0);
}
.cta-button .circle {
  width: 60px;
  height: 60px;
  border: 1px solid #121212;
  border-radius: 50%;
  display: flex;
  position: absolute;
  transition: 0.5s ease-in-out;
}
.cta-button .btn-smpro {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  margin-left: 30px;
  transition: 0.5s ease-out;
}
.cta-button:hover .btn-smpro {
  margin-left: 70px;
  transition: 0.5s ease-in-out;
}
.cta-button:hover .circle {
  transform: scale(0);
  transition: 0.5s ease-in-out;
}
.cta-button:hover i {
  transform: scale(1);
  transition: 0.5s ease-in-out;
  color: #fff;
  background: #121212;
}

.card-container .card {
  background: none;
  border: 0px;
  transition: 0.2s ease-in-out;
}
.card-container .card:hover {
  transition: 0.2s ease-in-out;
  background: #ededed !important;
}

#carouselContainer {
  display: flex;
  width: 100%;
  /* Ensure the container is full width */
}

.card-container-carousel {
  flex: 0 0 50%;
  /* Adjust this to control how many cards are visible at once */
  transition: transform 0.5s ease;
}

.list {
  background: #4bc712;
}

html {
  overflow-x: hidden;
}

footer {
  background: #121212;
}
footer img {
  filter: invert(1);
}
footer p {
  color: #fff;
}
footer ul li {
  color: #fff;
}
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  color: #fff;
}
footer small {
  color: #fff;
}

.input-group-text {
  background: #4bc712;
}

/* Mobile Only */
@media (max-width: 767px) {
  .page-header,
  .control-box {
    text-align: center;
  }
}
@media (max-width: 489px) {
  .caption {
    word-break: break-all;
  }
  .img-proyectos {
    width: 80% !important;
  }
}
/* ADD-ON
-------------------------------------------------- */
@media only screen and (min-width: 320px) {
  .list-menu {
    display: none !important;
  }
}
@media only screen and (min-width: 480px) {
  .list-menu {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .list-menu {
    display: flex !important;
  }
}
::-moz-selection {
  background: #2b2b2b;
  color: #ffffff;
  text-shadow: 0;
}
::selection {
  background: #2b2b2b;
  color: #ffffff;
  text-shadow: 0;
}

::-moz-selection {
  background: #2b2b2b;
  color: #ffffff;
}

@keyframes aparecer {
  0% {
    opacity: 0;
    /* Inicio: invisible */
    bottom: -50px;
    /* Inicio: fuera de la vista */
  }
  100% {
    opacity: 1;
    /* Fin: completamente visible */
    bottom: 0;
    /* Fin: posición normal */
  }
}
@keyframes wave {
  to {
    transform: scale(1.5);
    opacity: 0;
  }
}
.hex-container {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.hex-row {
  display: flex;
  margin-bottom: -10px;
}

.hex-row.even {
  margin-left: 55px;
}

.hexagon {
  width: 80px;
  height: 90px;
  margin-right: 10px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden;
  transition: transform 0.3s;
  display: inline-block;
  position: relative;
}

.hexagon:hover {
  transform: scale(1.05);
  z-index: 1;
}

.hexagon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1200px) {
  .container {
    flex-direction: column;
  }
  .hex-container {
    margin-top: 20px;
  }
  .hexagon {
    width: 150px;
    height: 170px;
  }
}
@media (max-width: 768px) {
  .hex-row {
    justify-content: center;
  }
  .hexagon {
    width: 120px;
    height: 140px;
  }
}
/* Fondo oscuro */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
  padding: 20px;
}

/* Mostrar popup */
.lightbox.active {
  visibility: visible;
  opacity: 1;
}

/* Contenedor del popup */
.popup-content {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  margin: auto;
  max-height: 90vh;
  overflow-y: auto;
}

/* Imagen responsiva */
.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Botón cerrar */
.close {
  position: fixed;
  top: 10px;
  right: 10px;
  background: black;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  z-index: 10000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.close:hover {
  background: #333;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* Responsive para dispositivos móviles */
@media (max-width: 768px) {
  .lightbox {
    padding: 10px;
  }
  .popup-content {
    max-width: 100%;
    padding: 0.5rem;
    max-height: 85vh;
  }
  .close {
    width: 35px;
    height: 35px;
    font-size: 20px;
    top: 5px;
    right: 5px;
  }
}
/* Para resoluciones muy pequeñas */
@media (max-width: 480px) {
  .popup-content {
    padding: 0.25rem;
  }
}/*# sourceMappingURL=style.css.map */