
html {
  scroll-behavior: smooth;
}


body {
	background: #fff;
	color: #000;
	margin:0px;
	font-size: 22px;
	font-family: "Open Sans", sans-serif;
  	font-optical-sizing: auto;
  	font-style: normal;
}   

h1 {
	font-size: 40px;
	font-family: "Grandstander", cursive;
	font-optical-sizing: auto;
	font-style: normal;
}

h2 {
	font-size: 30px;
	font-family: "Grandstander", cursive;
	font-optical-sizing: auto;
	font-style: normal;
}

div {
	margin:0px;
    padding:0px;
    width: 100%;
}


.imagen-top {
  position: absolute;
  top: 20px;
  left: 50px;
  z-index: 999; /* Asegura que la imagen esté encima de todo */
}


#footer {
	background-image:url("../img/footer-img.png");
	width: 100%;
	background-repeat: no-repeat;
	height: 250px;
	vertical-align: bottom;
	
}



/*===== Carousel Img ===== */
 .carousel-container {
            width: 100%; /* Ancho del contenedor del carrusel */
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease; /* Animación al cambiar las imágenes */
            width: 100%;
        }

        .slide {
            max-width: 100%; /* 16:9 aspect ratio */
            transition: transform 0.5s ease; /* Animación al cambiar las imágenes */
        }

        .prev,
        .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            font-size: 20px;
            padding: 10px;
            border: none;
            cursor: pointer;
            z-index: 1;
        }

        .prev {
            left: 0;
        }

        .next {
            right: 0;
        }





/*===== NAVBAR ===== */
/* Style the navbar */
#navbar {
  overflow: hidden;
  background-color: #f0e436;
  z-index: 1000;
}

/* Navbar links */
#navbar a {
  float: right;
  display: block;
  color: #222;
  text-align: right;
  padding: 14px;
  text-decoration: none;
}

/* Page content */
.content-img {
  padding-top: 5px;
	padding-left: 5%;
}


/* Page content */
.content {
  padding: 10px;
	padding-right: 5%;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .content {
	padding-top: 60px;
}



/*===== CATALOGO ===== */

/* Style the tab */
.tab {
	overflow: hidden;
	background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
	font-size: 22px;
	font-family: "Open Sans", sans-serif;
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}



