/* ===== Base Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Merriweather Sans', sans-serif;
  line-height: 1.6;
  background-color: #0b0f1a;
  color: #f5f5f5;
  padding-top: 70px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #f9f9f9;
}

p {
  color: #f9d949;
}

a {
  color: #00c2ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ===== Layout Centralizado ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  align-items: center;
}

/* ===== Navbar ===== */
#mainNav {
  background-color: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-brand {
  font-weight: bold;
  color: #f9d949 !important;
}

.nav-link {
  color: #f9f9f9 !important;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #00c2ff !important;
}

/* ===== Masthead ===== */
.masthead {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(rgba(11, 15, 26, 0.9), rgba(11, 15, 26, 0.9)),
              url('../assets/img/bg-stars.jpg') no-repeat center center / cover;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.masthead h1 {
  font-size: 3.5rem;
  color: #f9d949;
}

.masthead p {
  font-size: 1.2rem;
  color: #dddddd;
}

/* ===== Sections ===== */
.page-section {
  padding: 80px 15px;
}

.page-section.bg-primary {
  background-color: #1f2937;
}

.page-section.bg-light {
  background-color: #f9f9f9;
  color: #111827;
}

.page-section.bg-light h2,
.page-section.bg-light .divider {
  color: #111827;
}

/* ===== Divider ===== */
.divider {
  width: 60px;
  height: 3px;
  background-color: #00c2ff;
  margin: 1rem auto 2rem;
}

/* ===== Tables ===== */
table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
  background-color: rgba(255, 255, 255, 0.02);
  color: #f5f5f5;
}

th, td {
  text-align: center;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

thead {
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: bold;
}

/* ===== List Groups ===== */
ul.list-group {
  margin-left: auto;
  margin-right: auto;
  list-style: none;
  padding-left: 0;
  text-align: center;
}


.list-group-item {
  background-color: transparent;
  color: inherit;
  border: none;
  font-size: 1.05rem;
  padding-left: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left; /* para o texto não quebrar no centro */
  list-style: none;

}



.list-group-item::before {
  content: "★";
  color: #f9d949;
  margin-right: 0.5rem;
}


/* ===== Buttons ===== */
.btn-5star {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-5star:hover {
  background: linear-gradient(135deg, #00e0ff, #339dff);
  color: #111827;
  box-shadow: 0 6px 24px rgba(0, 194, 255, 0.4);
  transform: translateY(-2px);
}

.btn-5star::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
}

.btn-5star:hover::after {
  left: 120%;
}

.btn-primary:hover {
  background-color: #00a4d1;
}

.btn-outline-dark {
  border-color: #f9d949;
  color: #f9d949;
}

.btn-outline-dark:hover {
  background-color: #f9d949;
  color: #111827;
}

.btn-outline-primary {
  border-color: #00c2ff;
  color: #00c2ff;
}

.btn-outline-primary:hover {
  background-color: #00c2ff;
  color: white;
}

/* ===== Social Buttons ===== */
.btn-social {
  font-size: 1.5rem;
  padding: 0.5rem 0.8rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

/* ===== Footer ===== */
footer {
  background-color: #1a202c;
  color: #aaa;
}

footer .small {
  font-size: 0.875rem;
}

/* ===== AOS Transitions ===== */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .masthead h1 {
      font-size: 2.2rem;
  }

  .masthead p {
      font-size: 1rem;
  }

  .navbar-nav .nav-link {
      margin-left: 0;
      padding: 0.5rem 1rem;
  }

  .list-group-item {
      font-size: 1rem;
  }
}

/* ===== Elegant Horizontal Header ===== */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0b0f1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  padding: 0.5rem 0;
}

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

.logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #f9d949;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #00c2ff;
}

.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00c2ff;
  transition: width 0.3s;
  position: absolute;
  bottom: -4px;
  left: 0;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .main-nav ul {
      flex-direction: column;
      background-color: #111827;
      padding: 1rem;
      position: absolute;
      top: 60px;
      right: 10px;
      width: 200px;
      display: none;
  }

  .main-nav ul.active {
      display: flex;
  }

  .menu-toggle {
      display: block;
      font-size: 1.5rem;
      color: #fff;
      cursor: pointer;
  }
}

.menu-toggle {
  display: none;
}

.row.text-center > [class^="col-"] {
  text-align: center;
}

.center-block {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-section h2 {
  text-align: center;
}

.page-section p {
  text-align: center;
}
.btn-ghost {
  display: inline-block;
  font-weight: bold;
  color: #00c2ff;
  border: 2px solid #00c2ff;
  background-color: transparent;
  border-radius: 50px;
  padding: 14px 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 194, 255, 0.1);
}

.btn-ghost:hover {
  background-color: #00c2ff;
  color: #111827;
  box-shadow: 0 6px 24px rgba(0, 194, 255, 0.4);
  transform: translateY(-2px);
}
#resources .d-flex {
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
}
footer {
  background-color: #0b0f1a;
  color: #ccc;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#contact .d-flex {
  justify-content: center !important;
  align-items: center !important;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

#contact .btn-social {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#contact .btn-social:hover {
  transform: translateY(-3px);
  background-color: #f9d949;
  color: #111827;
  border-color: #f9d949;
}
footer .text-muted {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}
.btn-floating-buy {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #00c2ff, #0066ff);
  color: white;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(0, 194, 255, 0.4);
  text-decoration: none;
  z-index: 9999;
  transition: all 0.3s ease;
}

.btn-floating-buy:hover {
  background: linear-gradient(135deg, #00e0ff, #339dff);
  transform: translateY(-3px);
  color: #111827;
}
