/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
.logo-centered {
    text-align: center;
    margin-top: 30px;
}

.logo-centered .big-logo {
    max-width: 600px; /* Ajusta según tu preferencia */
    width: 100%;
    height: auto;
}

.bungee-spice-regular{
    font-family: "Bungee Spice", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 3.5rem;
}

/*estilo de cajas de videos*/
.video-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.rounded-video {
    border-radius: 12px;
    overflow: hidden;
}

.btn-custom {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b00, #ff9200);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 15px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.btn-custom:hover {
    background: linear-gradient(45deg, #e65a00, #ff6b00);
    transform: scale(1.05);
}

.logo-button-wrapper {
	position: absolute;
	right: 20px;
	top: 15px;
	background-color: white;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-button-wrapper img {
	width: 120px;
	height: auto;
}



.footer {
    background-image: linear-gradient(to right top, #39464e, #3c4a52, #3e4e57, #41535b, #44575f, #50646c, #5c7279, #688086, #819ca0, #9cb8bb, #b7d6d6, #d4f4f2);
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-contact h2 {
    color: #0DBD7F;
    margin-bottom: 10px;
  }
  .wa {
      color: #0DBD7F;;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
  }
  
  .moo-lah-lah-regular {
    font-family: "Moo Lah Lah", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 2.5rem;
  }
  
  
  
  .footer-contact p {
    margin: 5px 0;
    max-width: 600px;
    font-size: 1.1rem;
  }
  
  .footer-contact a {
    color: #00bcd4;
    text-decoration: none;
  }
  
  .footer-social {
    margin-top: 20px;
  }
  
  .footer-social a {
    color: #00bcd4;
    font-size: 45px;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .footer-social a:hover {
    color: #fff;
  }
  
  .footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #444;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #ccc;
  }

  .video-section {
    background-image: url('../espumita.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
  }
  
  .video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    z-index: -1;
  }
  
  .video-box iframe.rounded-video {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  }

  
  .title-responsive {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* centra horizontalmente */
  }

  /* Estilo para celulares */
@media (max-width: 767px) {
    .title-responsive {
      width: 105%;      /* o el tamaño que quieras */
      max-width: none;  /* permite que crezca más del 100% del contenedor */
    }
  }
  
