*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
    background-color: #1F1D36;
}

/* Navbar */
#barraNav{
    text-align: left;
    padding: .5rem 2rem;
    position: fixed;
    top: 0px;
    width: 100vw; 
    background: #000F08;
    color: #ffffff;  
}
#barraNav img{
    width: 9.6rem;
}

/* Hero Section */
#hero-section{
    background-image: url("../img/bg-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    padding-bottom: 6rem;
    padding-top: 8rem;
    position: relative;
    width: 100vw;
}
#hero-section:before {
	content:'';
	position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.6);
}

#hero-section h1, 
#hero-section h2,
#hero-section h3{
	color: #ffffff;
	position: relative
}

#hero-section h2{
    color: #CDCDCD;
}

#hero-section button{
    position: relative;
}

/* Galería */
#galeria h2{
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
}
.gallery-container{
    width: 80%;
    margin: 6.25rem;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2,300px);
}

.gallery-container .gallery-card{overflow: hidden};

.gallery-container .gallery-card a{
    width: 100%;
    height: 100%;
}

.gallery-container .gallery-card a > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-container .gallery-card a > img:hover{
    transform: scale(1.5) rotate(30deg);
}

/* Footer */
#footer{
    background-color: #DBD8E3;
}

.webpay{
    width: 9rem;
}
  
  #barraNavBottom a{
    color: #0b0c0e;
    font-weight: 700;
    font-size: 1.2rem;
}

/*Whatsapp*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}