body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #e4e4e4;
  color: black;
}

h1
{
  font-family : "Arial";
  color : #082640;
  font-size : 30px;
}
.navbar {
  background: #ADACAC;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  z-index: 10;
  position: fixed;
}

.logo {
  color : #a00c07;
  font-size: 15px;
  font-weight: bold;
}

.burger {
  font-size: 28px;
  color : #a00c07;
  cursor: pointer;
  margin-right: 20px;
}

.menu-lateral {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #082640;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  padding-top: 80px;
  z-index: 12;
}

.header {
  margin: auto;
  position: sticky;
  top: 1 px;
  background: #e4e4e4;
  text-align: center;
  padding: 20px;
  z-index: 1;
}

.menu-lateral a {
  color: #e4e4e4;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 20px;
  display: block;
  transition: 0.2s;
}

.navbar {
  background: #e4e4e4;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}



.menu-lateral {
  position: fixed;
  top: 0;
  left: -250;
  width: 260px;
  height: 100%;
  background: #082640;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  padding-top: 80px;
  z-index: 20;
}

.menu-lateral.open {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 15;
}

.overlay.show {
  display: block;
}

.menu-lateral ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-lateral li {
  margin:  0;
}

.menu-lateral a:hover {
  background: #FFFACD;
  border-left: 4px solid #FF0000;
  color: black;
}
.menu-lateral a:hover {
  background: hsl(46, 100%, 75%);
  border-left: 4px solid rgb(221, 29, 29);

}

.caroussel {
    position: relative;
    max-width: 900px;
    margin: 40px auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.slides-container {
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    min-width: 100%;
    height: 400px;
    object-fit: cover;
}
.slide {
    min-width: 100%;
    height: 400px;
    object-fit: cover;
}
.btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #000;           
    font-size: 3rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: transform 0.2s ease;
}


.btn:hover {
    transform: translateY(-50%) scale(1.3);
}

.prev { left: 15px; }
.next { right: 15px; }


.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.6);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: white;
}


@media (max-width: 600px) {
}


.card:hover img {
  filter: blur(4px);
}

.card:hover .overlay-text {
  opacity: 1;
}

.card:hover .overlay-text {
  opacity: 1;
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

.scroll-top img {
  width: 40px;     
  height: auto;
}

.scroll-top img:hover {       
  transform: scale(1.1);
  transition: 0.2s;
}


footer {
    background-color: #082640;
    color: #ffffff;
    margin-top: 60px;
    padding: 30px 20px;
    width: 100%;
}

footer p {
    color: #e0e0e0;
    margin: 8px 0;
}


a {
    color: #4db6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

@media screen and (max-width: 900px) {
    table, tr, td {
        display: block;
        width: 100%;
    }

    td {
        margin-bottom: 20px;
    }

    body > center > p {
        width: 90%;
    }
}


.insta {
  width: 30px;
  margin-top: 10px;

}


.card {
  position: relative;
  width: 250px;
  height: 350px;
  background: grey;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}


.card:hover img {
  filter: blur(4px);
}

.card:hover .overlay-text {
  opacity: 1;
}


.close-arrow {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 50px;
}

