header {
  width: 100%;
  padding: 0;
}

.navbar {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  font-family: "Poppins", sans-serif;
}
.navbar .navbar-brand {
  display: flex;
  align-items: center;
  color: #F7D42C !important;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
.navbar .navbar-brand .logo {
  width: 65px;
  height: auto;
  object-fit: contain;
  margin-right: 0.5rem;
}
.navbar .navbar-brand .brand-highlight {
  color: #F7D42C;
}
.navbar .navbar-brand:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877) !important;
}
.navbar .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #F7D42C;
  transition: width 0.3s ease;
}
.navbar .navbar-nav .nav-link.active {
  color: #F7D42C !important;
  text-shadow: 0 0 8px #F7D42C, 0 0 16px #F7D42C;
}
.navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar .navbar-nav .nav-link:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877) !important;
}
.navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar .navbar-toggler {
  display: block;
  border: none;
  outline: none;
  width: 35px;
  height: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  padding: 0;
}
.navbar .navbar-toggler span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #F7D42C;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: left center;
}
.navbar .navbar-toggler.collapsed span:nth-child(1) {
  transform: rotate(0deg) translate(0, 0);
}
.navbar .navbar-toggler.collapsed span:nth-child(2) {
  opacity: 1;
}
.navbar .navbar-toggler.collapsed span:nth-child(3) {
  transform: rotate(0deg) translate(0, 0);
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
.navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (min-width: 992px) {
  .navbar .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar {
    background-color: #000;
  }
}

.sticky-top {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

footer {
  background-color: rgb(30.75, 30.75, 30.75);
  color: #ffffff;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
footer p {
  margin: 0;
  line-height: 1.4;
}
footer p a {
  color: #F7D42C;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer p a:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}
footer small {
  color: #cccccc;
}
@media (max-width: 576px) {
  footer .container {
    flex-direction: column;
    gap: 0.2rem;
  }
  footer p, footer small {
    font-size: 0.85rem;
  }
}

body {
  background-color: #121212;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

a {
  color: #F7D42C;
  text-decoration: none;
}
a:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem 0;
}

p {
  line-height: 1.6;
}

button, .btn {
  background-color: #F7D42C;
  color: #121212;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
button:hover, .btn:hover {
  background-color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}

.card {
  background-color: rgb(30.75, 30.75, 30.75);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.whatsapp-float:hover {
  background-color: rgb(29.3911290323, 167.6088709677, 81.0241935484);
  transform: scale(1.1);
}

#inicio {
  position: relative;
  height: 100vh;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  /* Carrusel de fondo */
  /* Overlay oscuro */
}
#inicio .carousel-inner,
#inicio .carousel-item img {
  height: 100vh;
  object-fit: cover;
  transition: transform 1s ease;
}
#inicio .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  transition: background-color 0.5s ease;
}
#inicio .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 900px;
  padding: 0 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.5s;
}
#inicio .hero-content h1.display-4 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
#inicio .hero-content h1.display-4 .highlight {
  color: #F7D42C;
}
@media (min-width: 768px) {
  #inicio .hero-content h1.display-4 {
    font-size: 3rem;
  }
}
#inicio .hero-content p.lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
#inicio .hero-content p {
  margin-bottom: 1rem;
}
#inicio .hero-content p a {
  color: #F7D42C;
  text-decoration: none;
  transition: color 0.3s ease;
}
#inicio .hero-content p a:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}
#inicio .hero-content .hero-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
#inicio .hero-content .hero-buttons .btn {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}
#inicio .hero-content .hero-buttons .btn:hover {
  transform: scale(1.05);
}
#inicio .hero-content .hero-buttons .btn-primary {
  background-color: #F7D42C;
  border: none;
  color: #121212;
}
#inicio .hero-content .hero-buttons .btn-primary:hover {
  background-color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}
#inicio .hero-content .hero-buttons .btn-outline-light {
  color: #fff;
  border: 2px solid #fff;
}
#inicio .hero-content .hero-buttons .btn-outline-light:hover {
  background-color: #fff;
  color: #121212;
}

.logo {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 0.8s ease forwards;
  animation-delay: 0.3s;
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 3rem;
}
.services-cards .card {
  position: relative;
  flex: 1 1 300px;
  max-width: 350px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #121212;
  border: none;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.services-cards .card .carousel-inner img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.services-cards .card:hover .carousel-inner img {
  transform: scale(1.1);
}
.services-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(247, 212, 44, 0.6);
}
.services-cards .card .layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s ease, background-color 0.4s ease;
}
.services-cards .card:hover .layer {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
.services-cards .card .info {
  color: #fff;
}
.services-cards .card .info h1 {
  font-size: 1.5rem;
  color: #F7D42C;
  margin-bottom: 0.5rem;
}
.services-cards .card .info p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }
  .services-cards .card {
    max-width: 90%;
  }
  .services-cards .card .carousel-inner img {
    height: 200px;
  }
}

#servicios {
  background-color: #121212;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
#servicios .container {
  max-width: 1400px;
  margin: 0 auto;
}
#servicios h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #F7D42C;
}
#servicios p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: #ffffff;
  line-height: 1.6;
}
#servicios p a {
  color: #F7D42C;
  text-decoration: none;
  transition: color 0.3s ease;
}
#servicios p a:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}
#servicios main.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
#servicios main.services-cards .card {
  position: relative;
  flex: 1 1 250px;
  max-width: 280px;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  background-color: #121212;
  border: none;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease, z-index 0.3s;
}
#servicios main.services-cards .card .carousel-inner img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}
#servicios main.services-cards .card:hover {
  transform: scale(1.3);
  z-index: 5;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
#servicios main.services-cards .card:hover .carousel-inner img {
  filter: brightness(0.9);
}
#servicios main.services-cards .card .layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.925), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s, background 0.3s;
}
#servicios main.services-cards .card:hover .layer {
  opacity: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.914), transparent);
}
#servicios main.services-cards .card .info {
  color: #fff;
}
#servicios main.services-cards .card .info h1 {
  font-size: 1.5rem;
  color: #F7D42C;
  margin-bottom: 0.5rem;
}
#servicios main.services-cards .card .info p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 0;
}
#servicios main.services-cards:hover > .card:not(:hover) {
  filter: blur(5px);
  transform: scale(0.9);
  opacity: 0.7;
}
#servicios .btn {
  background-color: #F7D42C;
  color: #121212;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
#servicios .btn:hover {
  background-color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1200px) {
  #servicios main.services-cards .card {
    flex: 1 1 30%;
    max-width: 30%;
  }
  #servicios main.services-cards .card .carousel-inner img {
    height: 320px;
  }
}
@media (max-width: 992px) {
  #servicios main.services-cards .card {
    flex: 1 1 45%;
    max-width: 45%;
  }
  #servicios main.services-cards .card .carousel-inner img {
    height: 300px;
  }
}
@media (max-width: 768px) {
  #servicios {
    padding: 3rem 1rem;
  }
  #servicios h1 {
    font-size: 2rem;
  }
  #servicios p {
    font-size: 1rem;
  }
  #servicios main.services-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #servicios main.services-cards .card {
    flex: 1 1 90%;
    max-width: 90%;
  }
  #servicios main.services-cards .card .carousel-inner img {
    height: 220px;
  }
}
@media (max-width: 480px) {
  #servicios {
    padding: 2rem 1rem;
  }
  #servicios h1 {
    font-size: 1.8rem;
  }
  #servicios p {
    font-size: 0.95rem;
  }
  #servicios main.services-cards .card .carousel-inner img {
    height: 180px;
  }
}

#contacto {
  background: linear-gradient(to bottom, #121212, rgb(43.5, 43.5, 43.5));
  color: #ffffff;
  padding: 5rem 2rem;
}
#contacto h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #FFD700;
  text-align: center;
}
@media (min-width: 768px) {
  #contacto h1 {
    font-size: 3rem;
  }
}
#contacto p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
#contacto p a {
  color: #F7D42C;
  text-decoration: none;
  transition: color 0.3s;
}
#contacto p a:hover {
  color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
}
#contacto p i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  transition: transform 0.3s, color 0.3s;
}
#contacto p i:hover {
  transform: scale(1.2) rotate(-10deg);
  color: rgb(206.6643835616, 172.3835616438, 7.8356164384);
}
#contacto .card-glow {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
}
#contacto .card-glow:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}
#contacto .card-glow h4, #contacto .card-glow h5 {
  color: #F7D42C;
}
#contacto .card-glow .d-flex {
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#contacto .card-glow .d-flex .social-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, background 0.3s;
}
#contacto .card-glow .d-flex .social-logo:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.25);
}
#contacto .card-glow .d-flex .social-logo img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}
#contacto .whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  z-index: 100;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
#contacto .whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#contacto .whatsapp-float:hover {
  transform: scale(1.2);
}
@media (max-width: 768px) {
  #contacto {
    padding: 3rem 1rem;
  }
  #contacto h1 {
    font-size: 2rem;
  }
  #contacto p {
    font-size: 1rem;
  }
  #contacto .d-flex {
    justify-content: center;
  }
  #contacto .social-logo {
    width: 35px;
    height: 35px;
  }
  #contacto .social-logo img {
    width: 60%;
    height: 60%;
  }
}

#nosotros {
  background-color: #121212;
  color: #ffffff;
  padding: 5rem 2rem;
  text-align: center;
}
#nosotros .container {
  max-width: 1200px;
  margin: 0 auto;
}
#nosotros h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #F7D42C;
}
#nosotros p {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}
#nosotros p a {
  color: #F7D42C;
  text-decoration: none;
  transition: color 0.3s ease;
}
#nosotros p a:hover {
  color: rgb(245.9369863014, 206.2863013699, 15.9630136986);
}
#nosotros .row .card {
  background-color: #121212;
  border: none;
  border-radius: 0.75rem;
  padding: 2rem;
  color: #ffffff;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 15px 5px rgba(247, 212, 44, 0.5);
}
#nosotros .row .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 25px 8px rgba(247, 212, 44, 0.7);
}
#nosotros .row .card h4, #nosotros .row .card h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #FFC107;
}
#nosotros .row .card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 0;
}
#nosotros .row .card i {
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
#nosotros .row .card i:hover {
  transform: scale(1.2) rotate(-5deg);
}
#nosotros .row.align-items-center img {
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
#nosotros .row.align-items-center img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
#nosotros ul {
  list-style: none;
  padding: 0;
}
#nosotros ul li {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  text-align: left;
}
#nosotros ul li i {
  margin-right: 0.5rem;
  color: #28a745;
}
#nosotros .btn {
  background-color: #F7D42C;
  color: #121212;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}
#nosotros .btn:hover {
  background-color: rgb(231.2328767123, 192.8767123288, 8.7671232877);
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  #nosotros {
    padding: 3rem 1rem;
  }
  #nosotros h1 {
    font-size: 2rem;
  }
  #nosotros .card {
    padding: 1.5rem;
  }
  #nosotros .btn {
    font-size: 1rem;
    padding: 0.6rem 1.5rem;
  }
  #nosotros ul li {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
