@media (max-width: 768px) {
  body {
    padding: 10px;
  }
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
  font-family: "Chewy", system-ui;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: bold;
}

html {
  background-color: #e9ecef;
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  overflow-x: hidden;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  background-color: rgb(206, 212, 218);
}
.header {
  background-color: rgb(255, 125, 25);
  font-size: 12px;
  font-family: "Chewy", system-ui;
}
.header .in4 {
  display: flex;
  color: rgb(255, 255, 255);
  height: 30px;
}
.header .in4 .mail {
  margin-left: 20px;
  margin-top: 8px;
}
.header .in4 .slogan {
  margin-left: 40px;
  margin-top: 8px;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  background-color: white;
  padding: 10px;
}
.nav .logo img {
  cursor: pointer;
  height: 50px;
  width: 60px;
  transition: transform 0.3s;
}
.nav .logo img:hover {
  transform: scale(1.1);
}
.nav .social-network {
  margin-left: 10px;
}
.logo {
  display: flex;
  align-items: center;
  margin-left: 50px;
}
.text-logo {
  display: grid;
  font-family: "Chewy", system-ui;
  font-style: normal;
  font-size: 20px;
  color: rgb(2, 48, 71);
  align-items: center;
  margin-left: 5px;
}
.nav .nav-links {
  list-style: none;
  gap: 10px;
  margin-right: 37px;
}
.nav .nav-links li {
  display: inline-block;
  padding: 0 10px;
  position: relative;
}
.nav .nav-links li a:hover {
  transform: scale(1.1);
  color: rgb(255, 125, 25);
}
.nav .nav-links a {
  font-size: 700;
  color: rgb(2, 48, 71);
  text-decoration: none;
  font-weight: bold;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: rgb(255, 255, 255);
  min-width: 200px;
  top: 100%;
  left: -50px;
}

.dropdown-menu li {
  display: block;
  text-align: left;
}

.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  font-size: 14px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}
.social-network:hover {
  cursor: pointer;
  transition: all 0.3s;
  transform: scale(1.2);
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.image {
  width: 100%;
  height: 100%;
}
.container1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.container2 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.info {
  padding: 50px;
  display: block;
}
.title .subject strong {
  color: rgb(2, 48, 71);
  font-family: "Chewy", system-ui;
  font-style: normal;
  font-size: 70px;
}
.summary p {
  font-size: 16px;
  text-align: justify;
  font-family: "nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  color: rgb(2, 48, 71);
}
.list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
  font-weight: bold;
  margin: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.list p {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.list p:hover {
  cursor: pointer;
  color: rgb(251, 133, 0);
  font-style: none;
}
.list a {
  text-decoration: none;
  color: rgb(2, 48, 71);
  font-weight: bold;
}

.fotos {
  border-radius: 20px;
  transition: all 0.3s;
  cursor: pointer;
  margin-left: 20px;
}
.fotos:hover {
  transform: scale(1.1);
}
.slider {
  max-width: 1100px;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
  margin-left: 40px;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: cover;
  border-radius: 10px;
}

.slide.active {
  display: block;
}
.slides img.active {
  display: block;
}
.footer {
  background-color: rgb(255, 255, 255);
  color: rgb(2, 48, 71);
  padding: 30px 0;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin: 10px;
}

.footer-section h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section ul {
  font-size: 14px;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: rgb(2, 48, 71);
  text-decoration: none;
}

.footer-section ul li a:hover {
  cursor: pointer;
  color: rgb(251, 133, 0);
  font-style: none;
}

.social-icons img {
  width: 30px;
  margin: 5px;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  background-color: rgb(255, 125, 25);
  padding: 10px 0;
  font-size: 12px;
}

.footer-bottom p {
  color: rgb(255, 255, 255);
}
#return-home {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: none;
  z-index: 1000;
}

#return-home img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: transform 0.3s;
}

#return-home img:hover {
  transform: scale(1.2);
}
