/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header */
.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.navbar {
  position: absolute;
  top: 0;
  margin-top: 15px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 51, 102, 0.5);
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1rem;
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 500;
}

.nav-links li a:hover {
  color: #00ccff;
}

.active-page {
  background-color: rgba(0, 153, 102, 0.6);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  color: white !important;
}

/* Dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  z-index: 100;
  min-width: 160px;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  display: block;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 0.5rem 1rem;
  display: block;
  color: #003366;
  text-decoration: none;
}

.dropdown-menu li a:hover {
  background-color: #f0f0f0;
}

/* Responsive Menu Toggle */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
}

/* Slideshow */
.slideshow {
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
}

.caption {
  position: absolute;
  bottom: 20%;
  left: 5%;
  background: rgba(0, 85, 170, 0.7);
  padding: 1rem 2rem;
  color: white;
  font-size: 1.5rem;
  border-radius: 8px;
}

/* Subpage Header */
.subpage-header {
  height: 60vh;
  position: relative;
  background: url('../img/header2.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subpage-header h1 {
  font-size: 3rem;
  color: white;
  background-color: rgba(0, 51, 102, 0.6);
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
}

.breadcrumb {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #fff;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb span {
  color: #00ffcc;
}

/* Footer */
.footer {
  background: #003366;
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact {
  list-style: none;
}

.footer-links ul li,
.footer-contact p {
  margin-bottom: 0.5rem;
}

.footer-form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-form input,
.footer-form textarea {
  padding: 0.5rem;
  border: none;
  border-radius: 6px;
  font-family: inherit;
}

.footer-form button {
  padding: 0.7rem;
  background: #00cc99;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.footer-copy {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #00cc99;
  color: white;
}

/* Contact Info Section */
.contact-info {
  background: #f4f8fb;
  padding: 5rem 2rem;
  text-align: center;
}

.container-contact {
  max-width: 1100px;
  margin: auto;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.info-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  width: 300px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.info-item:hover {
  transform: translateY(-6px);
}

.icon-box {
  font-size: 2rem;
  color: white;
  background: #0055aa;
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.info-item h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.info-item p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
/* Contact Info Icons */
.contact-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}



.contact-icons a {
  color: white;
  font-size: 1.6rem;
  background: #003366;
  padding: 0.6rem;
  padding-right: 1rem;
  padding-left: 1rem;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.contact-icons a:hover {
  background: #005599;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 51, 102, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .highlight-content {
    flex-direction: column;
    align-items: center;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
  }

  .info-grid {
    flex-direction: column;
    align-items: center;
  }
}
