@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zalando+Sans+SemiExpanded:ital,wght@0,200..900;1,200..900&display=swap');
/* CSS Document */

body {
  display: flex;
  min-height: 100vh;
  flex-direction:column;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  text-align: justify;
}

/*Links*/
a {
    text-decoration:none;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
	outline:none; border:0px;
}

/*Navbar*/
.navbar {
	background: #ffffff;
}
.nav-link {color: #ffffff;}
.nav-link:focus {color: #ffffff !important;}
.nav-link:hover {color: #ff9999!important;}
.nav-link:active {color: #ff9999!important;}
.active {color: #ff9999!important;}
.active-blue {color:#99ccff!important;}

.navbar-scroll {
	transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
	background-color: transparent;
}

.navbar-scroll.scrolled {
	background-color: #6e1616;
	background-color: -webkit-linear-gradient(left, rgba(110, 22, 22, 1) 0%, rgba(212, 0, 0, 1) 50%, rgba(181, 14, 14, 1) 100%);
	background-color: -o-linear-gradient(left, rgba(110, 22, 22, 1) 0%, rgba(212, 0, 0, 1) 50%, rgba(181, 14, 14, 1) 100%);
	background-color: linear-gradient(to right, rgba(110, 22, 22, 1) 0%, rgba(212, 0, 0, 1) 50%, rgba(181, 14, 14, 1) 100%);
	backdrop-filter: blur(6px);
	transition: background-color 0.5s ease, backdrop-filter 0.5s ease;
}

/*Estilos personalizados del mega menu*/
.dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mega-menu .card {
  border: none;
  transition: transform 0.3s ease;
}

.mega-menu .card:hover {
  transform: translateY(-5px);
}

.mega-menu .card img {
  border-radius: 0.5rem;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.mega-menu .card-title {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-top: .5rem;
  color: #333;
}

/*Parallax*/
/* Carrusel Fullscreen */
#carouselParallax,
#carouselParallax .carousel-inner,
#carouselParallax .carousel-item {
  height: 100vh;
  min-height: 100vh;
  z-index: 1;	
}

/* Parallax container */
.parallax-wrapper {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.parallax-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.parallax-foreground { 
	position: absolute; 
	left: 2.5%; 
	bottom: 6%; 
	z-index: 60; 
	color: white; 
	text-shadow: 0 4px 18px rgba(0,0,0,0.6);
}

.parallax-foreground h2 { font-size: 2.2rem; margin:0 0 .5rem 0; }

.parallax-foreground p { margin:0; opacity: .9; }

/* control layer stacking via z-index */
.layer-1 { z-index: 10; }
.layer-2 { z-index: 20; }
.layer-3 { z-index: 30; }
.layer-4 { z-index: 40; }
.layer-5 { z-index: 50; }
.layer-6 { z-index: 60; }
.layer-7 { z-index: 70; }
.layer-8 { z-index: 80; }
.layer-9 { z-index: 90; }
.layer-10 { z-index: 100; }

/* Text */
.text-shadow {text-shadow: 4px 4px 8px rgba(0,0,0,0.2);}

/* Background */
.bg-danger {
	background: #92363c;
	background: -webkit-linear-gradient(left, rgba(110, 22, 22, 1) 0%, rgba(164, 52, 58, 1) 50%, rgba(181, 14, 14, 1) 100%);
	background: -o-linear-gradient(left, rgba(110, 22, 22, 1) 0%, rgba(164, 52, 58, 1) 50%, rgba(181, 14, 14, 1) 100%);
	background: linear-gradient(to right, rgba(110, 22, 22, 1) 0%, rgba(164, 52, 58, 1) 50%, rgba(181, 14, 14, 1) 100%);
}
.bg-info {
	background: #40cfff;
	background: -webkit-radial-gradient(circle, rgba(64, 207, 255, 1) 0%, rgba(0, 93, 150, 1) 100%);
	background: -o-radial-gradient(circle, rgba(64, 207, 255, 1) 0%, rgba(0, 93, 150, 1) 100%);
	background: radial-gradient(circle, rgba(64, 207, 255, 1) 0%, rgba(0, 93, 150, 1) 100%);
}
.bg-coffee {
	background: #8b643b;
	background: -webkit-radial-gradient(circle, rgba(139, 100, 69, 1) 0%, rgba(95, 68, 39, 1) 100%);
	background: -o-radial-gradient(circle, rgba(139, 100, 69, 1) 0%, rgba(95, 68, 39, 1) 100%);
	background: radial-gradient(circle, rgba(139, 100, 69, 1) 0%, rgba(95, 68, 39, 1) 100%);
}
.bg-pattern {
	position: relative;
	/*height: 100vh;*/
    background-image: url('../img/bg-pattern.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed; /* efecto parallax */
    transition: background-position 0.3s ease-out;
}

/* paddings */
.py-custom {
  padding-top: 15% !important;
  padding-bottom: 10% !important;
}

/* Cards */
.card-custom {
	-webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.card-custom:hover {
	box-shadow:0px 0px 20px 0px rgba(0,0,0,0.2)  ;
}

/* Cards Rollover */
.card-rollover {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-rollover img {
  width: 100%;
  display: block;
  transition: opacity .4s ease-in-out;
}

/* Imagen frontal */
.card-rollover .img-front {
  opacity: 1;
}

/* Imagen trasera */
.card-rollover .img-back {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

/* Efecto al hacer hover */
.card-rollover:hover .img-front {
  opacity: 0;
}

.card-rollover:hover .img-back {
  opacity: 1;
}

/* Cards Tinacos y Siternas */
.card-tinaco {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.card-header-tinaco {
  background: #009fe3;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
}

.card-body-tinaco {
  padding: 1rem;
  background-color: #fff;
}

.card-body-tinaco p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.tinaco-medidas {
  font-size: 0.85rem;
  color: #666;
}

.tinaco-abasto {
  color: #007bff;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* responsive adjustments */
@media (max-width: 991px) {
  .dropdown-menu.mega-menu {position: static;box-shadow: none;padding: 1rem 0;}
  .parallax-wrapper { height: 55vh; }
  .parallax-foreground h2 { font-size: 1.6rem; }
  .bg-pattern {background-attachment: scroll;}
  .card-rollover:hover .img-front {opacity: 1; cursor:default;}
  .card-rollover:hover .img-back {opacity: 0;}
}
@media (min-width: 992px) { /* Desde LG */
  .custom-cols-8 > * {
    flex: 0 0 calc(100% / 8);
    max-width: calc(100% / 8);
  }
}
