/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}

a {
  color: #ffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-valores {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-valores img {
  width: 64px;
  height: 64px;
}

/* Header */
.header {
  background-color: #171717;
  padding: 0px 0;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo img {
  height: 150px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 25px;
}

.nav a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.nav a:hover {
  color: #ffd700;
}

/* Language Selector */
.lang-selector {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lang-selector button {
  background: none;
  border: 1px solid #333;
  color: #fff;
  padding: 5px 12px;
  cursor: pointer;
  font-size: 14px;
  border-radius: 3px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.lang-selector button:hover {
  background-color: #ffcf09;
  color: #000;
  border-color: #ffcf09;
}

.lang-selector button.active {
  background-color: #ffcf09;
  color: #000;
  border-color: #ffcf09;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

.btn-yellow {
  background-color: #ffcf09;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.alert-link {
  color: #000;
  text-decoration: underline;
}

.btn-yellow:hover {
  background-color: #ffcf09;
  text-decoration: none;
}

/* Modal */
.modal {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  position: relative;
  color: #000;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 30px;
  font-weight: bold;
  border: none;
  background: none;
  cursor: pointer;
}

.close-btn:hover {
  color: #666;
}

/* Alert Boxes */
.alert-yellow,
.alert-red,
.alert-pix {
  padding: 15px;
  margin: 15px 0;
  border-radius: 4px;
}

.alert-yellow {
  background-color: #ffd700;
  color: #000;
}

.alert-red {
  background-color: #dc3545;
  color: #fff;
}

.alert-pix {
  background-color: #ffcf09;
  color: #000;
  font-size: 18px;
  text-align: center;
}

/* Valores Page Styles */
.valores-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 30px;
}

.valores-header h2 {
  font-size: 64px;
  color: #fff;
  margin: 20px;
}

.valores-lista {
  margin: 30px 0;
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
}

.valores-lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.valores-lista li {
  font-size: 18px;
  padding: 10px 0;
  color: #fff;
  border-bottom: 1px solid #333;
}

.valores-lista li:last-child {
  border-bottom: none;
}

.observacao {
  font-size: 16px;
  color: #ddd;
  margin: 15px 0;
  line-height: 1.6;
}

.gravacoes-info {
  margin-top: 30px;
  padding: 25px;
  background-color: #1a1a1a;
  border-radius: 8px;
  border-left: 4px solid #ffcf09;
}

.gravacoes-info p {
  font-size: 20px;
  color: #fff;
  margin: 0;
  line-height: 1.8;
}

/* Proteção Page Styles */
.protecao-subsection {
  margin: 30px 0;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 8px;
}

.subsection-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.subsection-header img {
  width: 40px;
  height: 40px;
}

.subsection-header h3 {
  font-size: 24px;
  color: #fff;
  margin: 0;
}

.protecao-subsection p {
  font-size: 16px;
  color: #ddd;
  line-height: 1.8;
  margin-bottom: 15px;
}

.protecao-subsection p:last-child {
  margin-bottom: 0;
}

.protecao-subsection.dica-extra {
  background-color: #1a1a1a;
  border-left: 4px solid #ffcf09;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    background-color: #171717;
    padding: 0;
    padding-top: 80px;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 500px;
    max-width: 500px;
    height: auto;
}

/* Bio Section */
.bio-section {
    background-color: #171717;
    padding: 40px 20px;
    text-align: center;
}

.bio-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #FFD700;
}

.bio-text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 20px;
    color: #fff;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #FFD700;
    font-size: 28px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #FFC700;
    transform: scale(1.2);
}

/* Navigation Buttons Section */
.nav-buttons-section {
    background-color: #171717;
    padding: 30px 20px;
}

.nav-button {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 10px auto;
    padding: 15px;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
    text-align: center;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #FFD700;
    color: #000;
    border-color: #FFD700;
    transform: translateX(5px);
}

/* Telegram Tutorial Section */
.telegram-tutorial {
    background-color: #171717;
    padding: 40px 20px;
    text-align: center;
}

.telegram-tutorial h2 {
    font-size: 24px;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

.tutorial-image {
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.tutorial-image img {
    width: 100%;
    height: auto;
    display: block;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 25px auto 0;
    padding-bottom: 25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Sections */
.section {
  padding: 60px 20px;
  border-bottom: 1px solid #333;
  background-color: #171717;
}

/* Section as standalone page */
.section-page {
    min-height: calc(100vh - 250px);
    padding-top: 120px;
    border-bottom: none;
}

.nav a.active {
    color: #FFD700;
    font-weight: bold;
}

.section h2 {
  font-size: 50px;
  margin-bottom: 25px;
}

.section h3 {
  font-size: 24px;
  margin: 20px 0 10px;
}

.section p {
  margin-bottom: 15px;
  font-size: 16px;
}

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

.section ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.service-list {
  margin: 20px 0;
}

.service-list li {
  padding-left: 30px;
  position: relative;
}

.subsection {
  margin-top: 30px;
  padding: 20px;
  background-color: #1a1a1a;
  border-radius: 4px;
}

.final-heading {
  margin-top: 30px;
  text-align: center;
  font-size: 28px;
}

/* Map */
.map-container {
  margin: 30px 0;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 4px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  text-align: center;
  padding: 30px 20px;
}

.footer p {
  margin: 5px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .header .container {
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    margin-top: 15px;
  }

  .nav.active {
    display: flex;
  }

  .header-buttons {
    display: none;
  }

  .section h2 {
    font-size: 24px;
  }

  .modal-content {
    margin: 20% auto;
    width: 95%;
    padding: 20px;
  }
}
