@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

/* Mobile optimization for carousel images */
@media (max-width: 768px) {
  #kushyCarousel {
    max-height: none !important;
    height: auto;
  }
  

  #kushyCarousel .carousel-item {
    height: auto;
  }
  
  /* Add this to your CSS file */
#kushyCarousel .carousel-control-prev,
#kushyCarousel .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

#kushyCarousel .carousel-control-prev {
  left: 15px;
}

#kushyCarousel .carousel-control-next {
  right: 15px;
}

 


#kushyCarousel .carousel-control-prev-icon,
#kushyCarousel .carousel-control-next-icon {
  background-size: 100%, 100%;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  filter: invert(1); /* Makes the arrows black */
}

#kushyCarousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

#kushyCarousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#kushyCarousel .carousel-control-prev:hover,
#kushyCarousel .carousel-control-next:hover {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}

  #kushyCarousel .carousel-item img {
    height: auto !important;
    max-height: 200px;
    width: 100%;
    object-fit: contain;
  }
  
  /* Specific adjustments for each carousel image if needed */
  #kushyCarousel .carousel-item:nth-child(1) img {
    object-position: center 30%;
  }
  
  /* Ensure the cloud hover effect works on mobile */
  .cloud-hover-container:hover .cloud-hover-img {
    transform: scale(1.02);
    animation: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Oswald';
  font-size: 16px;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  padding: 10px 70px;
  color: white;
  position: relative;
  z-index: 1000;
}


  
.nav-links {
  display: flex;
  align-items: center;
  padding-right: 450px ;
  gap: 30px;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  margin: 0;
   position: relative;
  text-decoration: none;
  color: inherit; /* o el color que quieras */
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #FFC22A; /* o un color fijo como #000 */
  left: 0;
  bottom: 0;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.members-button::after {
  display: none !important;
}


.logo {
  padding-left: 100px;
  margin: 0;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  padding: 0;
  display: block;
}

.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
  margin-left: 20px;
}

.members-button {
  background-color: #07BAF7; /* Amarillo vibrante */
  color: white; /* Texto blanco */
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.members-button:hover {
  background-color: #cd1cca; /* Un tono más oscuro al pasar el mouse */
  color: white;
}




.kushyCarousel {
  max-height: 250px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  margin-bottom: 360px;
  padding-bottom:360px ;
}

.kushyCarousel .carousel-item img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.zona-3 {  
 width: 100%;
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 3px;
  margin-bottom: 10px; /* <-- esto agrega el espacio hacia la siguiente sección */
}
  

.img-full {
  width: 100%;
  display: block;
  max-width: 100%;
  height: auto;
}

/* How Kushy Sites Works section */
.how-it-works {
  background-color: #ffffff;
}

.how-it-works .card {
  padding-top: 40px;
  margin-top: 30px;
  padding-bottom: 90px;
  margin-bottom: 10px;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background-color: #fbfafa;
  box-shadow: 0 2px 8px rgba(26, 25, 25, 0.5);
}

.how-it-works .icon {
  color: #00C8FD;

}

/* Ensure Bootstrap Icons inside the how-it-works cards use the same blue */
.how-it-works .icon i {
  color: #00C8FD;
  fill: #00C8FD;
}

.hover-pulse:hover {
  animation: pulse-hover 1s;
}

@keyframes pulse-hover {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 200, 253, 0.25);
  transition: all 0.3s ease;
}

.kushy-hover:hover {
  animation: shake-hover 0.3s;
  animation-fill-mode: both;
}

@keyframes shake-hover {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  50% { transform: translateX(4px); }
  75% { transform: translateX(-4px); }
  100% { transform: translateX(0); }
}



/* Build Section */
.build-section {
  margin-top: 50px;
background: linear-gradient(180deg, #ffffff 0%, #f2faff 70%, #e4f3fb,#f2faff 100%);


  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.build-section .content {
  max-width: 800px;
  margin: 0 auto; /* center content */
  text-align: center;
}


.build-section .decor-icon {
  position: absolute;
  bottom: 0;
  width: 120px;
}


.service-tile {
  background: white;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 180px; /* give square-like shape */
  margin-bottom: 20px; /* Space below each tile */
}

.demo-button {
  background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
  border: none;
  color: white;
  border-radius: 8px;
  padding: 12px 24px;
  box-shadow: 0 4px 12px rgba(0, 139, 208, 0.4);
  transition: all 0.3s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  background: linear-gradient(135deg, #f0faff, #e6f6ff);
}


@media (max-width: 768px) {
  .build-section .decor-icon {
    width: 70px;
 }
}

/* Packages Section */
.packages-title {
  font-size: 48px;
  color: #2f2f2f;
}

/* Add a gradient background to smoothly transition from the build section */
.packages {
  padding-bottom: 1rem;
  background: linear-gradient(180deg, #f2faff, #e4f3fb, #d6ecf7);
  background-size: 400% 400%;
  padding: 80px 20px;
  
   /* match spacing with build section */
  
}






@media (max-width: 768px) {
  .packages-title {
    font-size: 32px;
  }
}

.package-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children like logo images */
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.package-card img {
  border-radius: 8px;
}

.package-card .price {
  color: #028bd0;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.arrow-custom {
  font-size: 2rem;
  font-weight: 700;
  color: #444;
  background: none;
  padding: 0 10px;
  transition: transform 0.2s ease, color 0.2s ease;
  user-select: none;
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 0.8;
  padding: 0 15px;
}

.carousel-control-prev:hover .arrow-custom,
.carousel-control-next:hover .arrow-custom {
  transform: scale(1.2);
  color: #028bd0; /* Sky Kushy Blue */
}



/* Sección Contacto Kushy */
section.contact-section {
  margin-top: 30px;
  background: linear-gradient(to bottom right, #ffffff, #ffffff);
  padding: 80px 20px;
  border-radius: 0 0 20px 20px;
}

/* Títulos */
.contact-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
}

.contact-section h4 {
  font-size: 1.4rem;
  color: #4caf50;
  margin-bottom: 30px;
}

/* Botón central azul glowing */
.contact-section .btn-primary.btn-lg {
  background-color: #028bd0;
  border: none;
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(2, 139, 208, 0.4);
  transition: all 0.3s ease;
}
.contact-section .btn-primary.btn-lg:hover {
  box-shadow: 0 0 30px rgba(2, 139, 208, 0.6);
  transform: translateY(-2px);
}

/* Formulario */
.contact-section form .form-label {
  font-weight: 500;
  color: #34495e;
}
.contact-section form .form-control {
  border-radius: 12px;
  border: 1px solid #ced4da;
  padding: 10px 14px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  transition: border 0.3s ease;
}
.contact-section form .form-control:focus {
  border-color: #028bd0;
  box-shadow: 0 0 5px rgba(2, 139, 208, 0.3);
}

/* Botones de acción abajo */
.contact-section .btn-outline-primary,
.contact-section .btn-success {
  border-radius: 30px;
  font-weight: 600;
  padding: 10px 24px;
  font-size: 1rem;
}
.contact-section .btn-outline-primary:hover {
  background-color: #028bd0;
  color: #fff;
  border-color: #028bd0;
}
.contact-section .btn-success {
  background-color: #43a047;
  border: none;
}
.contact-section .btn-success:hover {
  background-color: #388e3c;
  box-shadow: 0 0 10px rgba(67, 160, 71, 0.4);
}

/* Espaciado general */
.contact-section .row > div {
  margin-bottom: 20px;
}

footer img {
  opacity: 0.8;
  transition: transform 0.3s ease;
}
footer img:hover {
  transform: scale(1.1);
  opacity: 1;
}

footer a {
  transition: color 0.3s ease;
}
footer a:hover {
  color: #00ffb7;
}

/* Compact footer styles */
.kushy-footer {
  padding-top: 2rem;
  padding-bottom: 22px;
  text-align: left;
}

.kushy-footer .trusted-logos {
  gap: 1rem;
  margin-bottom: 1rem;
}

.kushy-footer .trusted-logos img {
  height: 42px;
  width: auto;
}

.kushy-footer p {
  margin-bottom: 0.25rem;
}


.disclaimer {
  
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}

.disclaimer.show {
  max-height: 500px; /* suficiente para que quepa todo */
  opacity: 1;
}

/* Utility class for toggling display of the disclaimer */
.hidden {
  display: none;
}

.legal-text {
 
  font-size: 0.65rem;
  font-family: 'Roboto', sans-serif;
  color: #cccccc; /* gris clarito y visible */
  line-height: 1.6;
  font-weight: 400;
}

.legal-text strong {
  
  font-size: 0.65rem;
  font-family: 'Roboto', sans-serif;
  color: #ffffff; /* blanco para resaltar nombres o frases clave */
  font-weight: 600;
}
.carusel{
        padding-top: 25px;
        background: linear-gradient(to bottom, #EBF7FD, #f2faff, #ffffff)

}

.light1{
  font-family: 'Roboto', sans-serif;
  color: #00C8FD; /* celeste Kushy brillante 💎 */
  font-weight: 500;
}


.legal-link{
  padding-left: 505px;
  text-align: center;
  font-size: 0.85rem;
  color: #e4e1e1;


}
 
.footer-text{
  font-size: 0.72rem;
  text-align: right;
}

.kushy-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;

  padding-bottom: 0px;

}



.ftext{
  font-family: 'Roboto', sans-serif;
  padding-top: 10px;
  font-size: 0.42rem;
}

.zona-3 {
  overflow: hidden;
  position: relative;
}

.zona-3 img {
  transition: transform 0.2s ease, filter 0.2s ease;
  width: 100%;
  display: block;
}

.zona-3:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}




.img-hover-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.img-hover-effect {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.2s ease, filter 0.2s ease;
  cursor: pointer;
  display: block;
}

.img-hover-link:hover .img-hover-effect {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}
.cloud-hover-container {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.cloud-hover-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 1.5s ease, filter 1.2s ease;
  will-change: transform;
}

.cloud-hover-container:hover .cloud-hover-img {
  transform: scale(1.05) translateY(-8px) rotate(-0.5deg);
  filter: brightness(1.08) contrast(1.05) saturate(1.1);
  animation: cloudMove 4s infinite linear;
}

@keyframes cloudMove {
  0%   { transform: scale(1.05) translateY(-8px) translateX(0); }
  50%  { transform: scale(1.06) translateY(-10px) translateX(4px); }
  100% { transform: scale(1.05) translateY(-8px) translateX(0); }
}










@media (max-width: 992px) {
  .nav-links {
    gap: 20px;
  }

  .logo img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #000;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .nav-links a {
    padding: 0.75rem 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .contact-section .btn-primary.btn-lg {
    width: 100%;
  }

  .contact-section .btn-outline-primary,
  .contact-section .btn-success {
    width: 48%;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-section h4 {
    font-size: 1.1rem;
  }

  .how-it-works h2 {
    font-size: 2rem !important;
  }

  .kushyCarousel {
    margin-bottom: 1rem;
    padding-bottom: 0;
  }
}

