* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.var-color {
  color: #00ffff;
}

body,
html {
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to right, #001f3f, #003366);
  color: white;
  min-height: 100vh;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.col.center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-text {
  font-family: "Posterama 2001 W04 Regular";
  font-weight: 300;
  font-size: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.active,
nav a:hover {
  color: #00ffff;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 0.7rem 1.3rem;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

main {
  margin: auto;
}

.intro {
  position: relative;
  background-image: linear-gradient(#0d3178, rgba(5, 5, 3, 0.5)),
    url("../images/banner-semana.webp");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 7rem 2rem;
  text-align: center;
  z-index: 0;
}

.intro h1 {
  font-family: "Posterama 2001 W04 Regular";
  font-weight: 300;
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.wonderboat-logo {
  width: 40%;
}

@media screen and (min-width: 1280px) {
  .wonderboat-logo {
    width: 12%;
  }
}

.intro p {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

/* Mobile */
.institutional {
  display: grid;
  grid-template-rows: auto auto;
  gap: 3.125rem;
  align-items: center;
  padding: 2rem;
}

/* Desktop */
@media screen and (min-width: 1280px) {
  .institutional {
    grid-template-columns: auto auto;
    padding: 4.375rem;
  }
}

.institutional__image {
  max-width: 100%;
}

@media screen and (min-width: 1280px) {
  .institutional__image {
    max-width: 450px;
  }
}

/* Mobile */
.institutional__copy {
  padding: 0 0 1.875rem 0;
}

/* Desktop */
@media screen and (min-width: 1280px) {
  .institutional__copy {
    padding: 0 1.875rem;
  }
}

.institutional__copy h4 {
  font-size: 1.5625rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.institutional__copy h3 {
  font-size: 1.4rem;
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.institutional p {
  font-family: "Roboto", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6875rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-whatsapp {
    margin-top: 1rem;
  }
}

/* Animações */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem 2rem;
  z-index: 1000;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a,
.mobile-menu button {
  color: white;
  text-decoration: none;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-menu button {
  padding: 0.5rem 0;
  background-color: #25d366;
  border-radius: 5px;
  color: white;
  font-weight: bold;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
  .col.center {
    display: none;
  }

  .btn-whatsapp {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
  }

  .mobile-menu.show {
    display: block;
  }
}

.nautical-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 100%;
  flex-wrap: wrap;
}

.nautical-divider .icon {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.nautical-divider .line {
  height: 2px;
  width: 60px;
  background: #00ffff;
  position: relative;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.botao-matricula {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.botao-matricula:hover {
  background-color: #157a3a;
  transform: scale(1.05);
}

/* Ajustes para mobile */
@media (max-width: 480px) {
  .botao-matricula {
    bottom: 15px;
    right: 15px;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }
}
