@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

body {
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  overflow-x: hidden;
  /* Previne scroll horizontal */
  padding-top: 0;
  /* Remover padding para evitar espaço branco */
  max-width: 100vw;
  margin: 0;
}

.title-color {
  background: #004d4d;
 
}

.navbar {
  height: 80px;
  z-index: 1000;
  /* Garante que fique sobre o vídeo */
  background: #004d4d;
  backdrop-filter: none;
  position: fixed;
  /* Torna o header fixo */
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.3s ease;
  border: none;
  box-shadow: none;
}

/* Forçar transparência em todas as classes do Bootstrap */
.navbar.bg-body-tertiary {
  background: transparent;
}


/* Estado transparente apenas na página inicial (com vídeo) */
.navbar.transparent {
  background: transparent;
}

/* Background branco para páginas que não são o index */
body:not(.index-page) .navbar {
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Garantir que o navbar-container também tenha a cor correta */
.navbar-container {
  background: #004d4d;
}

/* Background branco para navbar-container em páginas que não são o index */
body:not(.index-page) .navbar-container {
  background: #ffffff;
}

/* Classes para mudança de background do navbar */
.navbar.scrolled {
  background-color: #006666;
  transition: background-color 0.3s ease;
}



.navbar.shadow-sm {
  box-shadow: none;
}

/* Remove foco do botão hamburguer */
.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.navbar-toggler {
  border: none;
  color: white;
  transition: color 0.3s ease;
}

/* Cor do botão hamburger para páginas com background branco */
body:not(.index-page) .navbar-toggler {
  color: #004d4d;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Ícone do hamburger para páginas com background branco */
body:not(.index-page) .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 77, 77, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #004d4d;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-button {
  background: none;
  border: none;
  padding: 0;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  color: #004d4d;
  font-size: 16px;
  transition: color 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.nav-button:hover {
  color: #006666;
}

.nav-button:focus {
  outline: none;
  box-shadow: none;
}

/* Forçar cor #004d4d para todas as páginas exceto index */
body:not(.index-page) .navbar .nav-link {
  color: #004d4d;
}

/* Regra mais específica para garantir que a cor seja aplicada */
body:not(.index-page) .navbar .navbar-nav .nav-item .nav-link {
  color: #004d4d;
}

/* Regra para quando o navbar tem background branco (classe scrolled) */
.navbar-container.scrolled .nav-link {
  color: #198754;
}

/* Regra ainda mais específica para garantir que funcione */
.navbar-container.scrolled .navbar-nav .nav-item .nav-link {
  color: #198754;
}

/* Regra com máxima especificidade para sobrescrever Bootstrap */
.navbar.navbar-expand-lg .navbar-container.scrolled .navbar-nav .nav-item .nav-link {
  color: #198754;
}

/* Regra para sobrescrever qualquer regra do Bootstrap */
.navbar .navbar-container.scrolled .navbar-nav .nav-item .nav-link,
.navbar .navbar-container.scrolled .navbar-nav .nav-item .nav-link:focus,
.navbar .navbar-container.scrolled .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-container.scrolled .navbar-nav .nav-item .nav-link:active {
  color: #198754;
}

.navbar-container.scrolled .logo-principal {
  color: #198754;
}

.navbar-container.scrolled .navbar-toggler {
  color: #198754;
}

.navbar-container.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2825, 135, 84, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-container.scrolled .nav-button {
  color: #198754;
}

.navbar-container.scrolled .nav-button:hover {
  color: #146c43;
}

/* Cores dos links para páginas com background branco */
body:not(.index-page) .nav-link {
  color: #004d4d;
}

/* IMPORTANTE: Exceção para offcanvas mobile - sempre branco em todos os estados */
.offcanvas .nav-link,
.offcanvas .nav-link:link,
.offcanvas .nav-link:visited,
.offcanvas .nav-link:active,
.offcanvas .nav-link:hover,
.offcanvas .nav-link:focus,
.offcanvas-body .nav-link,
.offcanvas-body .nav-link:link,
.offcanvas-body .nav-link:visited,
.offcanvas-body .nav-link:active,
.offcanvas-body .nav-link:hover,
.offcanvas-body .nav-link:focus,
body:not(.index-page) .offcanvas .nav-link,
body:not(.index-page) .offcanvas .nav-link:link,
body:not(.index-page) .offcanvas .nav-link:visited,
body:not(.index-page) .offcanvas .nav-link:active,
body:not(.index-page) .offcanvas-body .nav-link,
body:not(.index-page) .offcanvas-body .nav-link:link,
body:not(.index-page) .offcanvas-body .nav-link:visited,
body:not(.index-page) .offcanvas-body .nav-link:active {
  color: #ffffff !important;
}

/* Cores dos links para páginas com background escuro (index) */
body.index-page .nav-link {
  color: white;
}

/* Garantir que a cor #004d4d seja aplicada em todas as páginas exceto index */
body:not(.index-page) .nav-link:hover {
  color: #006666;
}

.logo-principal {
  color: white;
  transition: color 0.3s ease;
}

/* Cor do logo para páginas com background branco */
body:not(.index-page) .logo-principal {
  color: #004d4d;
}

.logo-principal img {
  width: 100px;
  transition: opacity 0.3s ease-in-out;
}

/* Botão inscrições (desktop) */
.btn-subscribe {
  font-family: "DM Sans", sans-serif;
  background: #006666;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 22px;
  transition: all 0.3s ease;
}

.btn-subscribe:hover {
  background: #004d4d;
  color: white;
  border-color: white;
}

/* Botão inscrições para páginas com background branco */
body:not(.index-page) .btn-subscribe {
  background: #006666;
  color: white;
  border: 2px solid #006666;
}

body:not(.index-page) .btn-subscribe:hover {
  background: #004d4d;
  color: white;
  border-color: #004d4d;
}

/* Espaçamento entre itens do menu */
.navbar-nav {
  gap: 24px;
}

/* Ajustar alinhamento do header */
.navbar-container {
  background: transparent;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Estado transparente (quando no topo, sobre o vídeo) */
.navbar-container.transparent {
  background: transparent;
  transition: background 0.3s ease-in-out;
}

/* Após sair do hero vídeo */
.navbar-container.scrolled {
  background: #fff;
  transition: background 0.3s ease-in-out;
  color: #004d4d;
}


/* Hero Video Section */
.hero-video-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-width: 100vw;
  max-height: 100vh;
}



.hero-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.hero-video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: auto;
}

.scroll-down-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 11;
}

.scroll-down-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  color: white;
  transform: translateY(-2px);
}

.scroll-down-btn svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-5px);
  }

  60% {
    transform: translateY(-3px);
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 102, 102, 0.5);
  border-radius: 50%;
  padding: 20px;
}

.section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #006666;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.card-info-describe {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#custom-cards h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #006666;
}

#custom-cards .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#custom-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

#custom-cards .card-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

/* Títulos dos cards da seção "Sobre o Congresso" */
#apresentacao .card-title {
  color: #006666;
  font-weight: 700;
}

#custom-cards .card-text {
  font-size: 15px;
  color: #555;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 250px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.flip-card-front {
  background-color: #f8f9fa;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flip-card-back {
  background-color: #198754;
  /* verde bootstrap */
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

#novidades {
  background: #f8f9fa;
  border-radius: 12px;
}

/* Sistema de seções independentes */
.section-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.section-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #006666;
  z-index: 1;
}

/* Seção com container (padrão) */
.section-container {
  padding: 3rem 0;
}

/* Primeira seção após o vídeo - adiciona background que se estende até o topo */
.section-container:first-of-type {
  margin-top: -80px;
  /* Compensa a altura do navbar fixo */
  padding-top: calc(3rem + 80px);
  /* Adiciona padding extra para compensar */
}

.section-container .container {
  position: relative;
  z-index: 2;
}

/* Seção full-width (background até as bordas) */
.section-fullwidth {
  padding: 3rem 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.section-fullwidth .container {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

/* Cores de fundo alternadas */
.section-bg-gray {
  background-color: #f8f9fa;
}

.section-bg-green {
  background-color: #e8f5f5;
}

.section-bg-light {
  background-color: #ffffff;
}

.section-bg-white {
  background-color: #ffffff;
}



.title-apresentacao {
  padding-top: 100px;
}

#novidades h2 {
  color: #198754;
  /* verde bootstrap */
  font-weight: bold;
}

#novidades p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.footer {
  background-color: #000;
  /* fundo preto */
  color: #fff;
  /* texto branco */
  font-size: 0.9rem;
  height: 300px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  /* deixa as logos brancas se forem coloridas */
}

.footer a {
  color: #ccc;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

#comissao img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

#comissao h6 {
  font-size: 1rem;
}

#comissao p {
  font-size: 0.9rem;
}

.apresentacao {
  margin: 120px 0 50px;
}

.diretoria {
  width: 100%;
  margin-top: 100px;
}

.card-body {
  display: flex;
  justify-content: center;
  align-items: center;
}


.section-wrapper:first-of-type,
.section-container:first-of-type {
  margin-top: 0;
  padding-top: 0;
}

/* Estilos para a tabela de preços */
.pricing-table {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.pricing-table thead th {
  background-color: #198754;
  color: white;
  font-weight: 700;
  border: none;
  padding: 0.8rem 0.5rem;
  text-align: center;
  font-size: 0.85rem;
  white-space: nowrap;
}

.pricing-table tbody td {
  padding: 0.8rem 0.5rem;
  vertical-align: middle;
  border-color: #e9ecef;
  font-size: 0.85rem;
}

.pricing-table tbody tr:hover {
  background-color: #f8f9fa;
  transition: background-color 0.2s ease;
}

.pricing-table .badge {
  font-size: 0.7rem;
  padding: 0.4rem 0.6rem;
}

/* Destaque para a primeira coluna (categorias) */
.pricing-table tbody td:first-child {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}

/* Destaque para valores promocionais (primeira coluna de preços) */
.pricing-table tbody td:nth-child(2) {
  background-color: #d1e7dd;
}

.pricing-table tbody td:nth-child(2):hover {
  background-color: #c3e6cb;
}

/* Destaque para valores no evento (última coluna) */
.pricing-table tbody td:last-child {
  background-color: #f8d7da;
}

.pricing-table tbody td:last-child:hover {
  background-color: #f5c2c7;
}

/* Responsividade para a tabela */
@media (max-width: 1200px) {
  .pricing-table {
    font-size: 0.8rem;
  }
  
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.6rem 0.3rem;
  }
  
  .pricing-table thead th {
    font-size: 0.75rem;
  }

  /* Regra ainda mais específica para garantir que funcione */
  .navbar-container.scrolled .navbar-nav .nav-item .nav-link {
    color: #004d4d;
  }

  /* Regra com máxima especificidade para sobrescrever Bootstrap */
  .navbar.navbar-expand-lg .navbar-container.scrolled .navbar-nav .nav-item .nav-link {
    color: #004d4d;
  }
}

@media (min-width: 1200px) {
  .hero-video-section {
    height: 100vh;
  }
}

@media (max-width: 992px) {
  .pricing-table {
    font-size: 0.75rem;
  }
  
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.5rem 0.2rem;
  }
  
  .pricing-table thead th {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.7rem;
  }
  
  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.4rem 0.1rem;
  }
  
  .pricing-table thead th {
    font-size: 0.65rem;
  }
  
  .pricing-table tbody td {
    font-size: 0.65rem;
  }
}

/* Garantir que o vídeo nunca ultrapasse os limites da tela */
.hero-video-section,
.hero-video-container,
.hero-video,
.hero-fallback {
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .logo-principal {
    font-size: 20px;
  }

  .navbar {
    height: 70px;
  }

  .banner .logo img {
    width: 220px;
  }

  .sub-banner-logo img {
    width: 100%;
  }

  .navbar-container {
    padding: 0 10px;
    justify-content: space-between;
    height: 75px;
  }
}

@media (max-width: 576px) {
  .section-fullwidth {
    padding: 2rem 0;
  }

  #custom-cards .card-body {
    padding: 1.5rem 1rem;
  }

  #custom-cards .card-text {
    font-size: 14px;
  }

  .pricing-table {
    font-size: 0.8rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.5rem 0.25rem;
  }

  .pricing-table .badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 0.75rem 0.5rem;
  }

  .pricing-table .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
  }

  .hero-video-section {
    margin-top: 70px;
    /* Ajusta para header menor no mobile */
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .scroll-down-btn {
    width: 45px;
    height: 45px;
  }
}

/* Estilos para a página de contato moderna */
.contact-page-wrapper {
  position: relative;
  margin: 80px 0;
  padding: 0;
}

.contact-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-section {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  color: white;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-info-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-badge {
  margin-bottom: 20px;
}

.contact-badge span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.contact-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon svg {
  color: white;
}

.contact-item-content {
  flex: 1;
}

.contact-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.8;
}

.contact-value {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-value:hover {
  opacity: 0.8;
  color: white;
}

.contact-organization {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.organization-logo img {
  max-height: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.organization-text {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.contact-form-section {
  padding: 40px 40px;
  background: white;
}

.contact-form-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-control {
  width: 100%;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: #006666;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 102, 102, 0.1);
}

.form-control::placeholder {
  color: #adb5bd;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
  padding-right: 45px;
  appearance: none;
}

.btn-contact-submit {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}

.btn-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 102, 0.4);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsividade */
@media (max-width: 991px) {
  .btn-subscribe {
    display: none;
    /* já está no offcanvas */
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 30px 25px;
  }
  
  .contact-title {
    font-size: 1.8rem;
  }
  
  .contact-card {
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .contact-page-wrapper {
    padding: 70px 0 20px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 25px 15px;
  }
  
  .contact-title {
    font-size: 1.6rem;
  }
  
  .contact-description {
    font-size: 0.95rem;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .contact-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* Estilos para a página de hospedagem moderna */
.accommodation-page-wrapper {
  margin-top: 130px;
  padding: 0;
  position: relative;
}

.accommodation-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.accommodation-info-section {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  color: white;
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
}

.accommodation-info-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.accommodation-info-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.accommodation-badge {
  margin-bottom: 20px;
}

.accommodation-badge span {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accommodation-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.accommodation-description {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0.9;
}

.accommodation-details {
  margin-bottom: 30px;
}

.accommodation-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.accommodation-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.accommodation-icon svg {
  color: white;
}

.accommodation-item-content {
  flex: 1;
}

.accommodation-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.8;
}

.accommodation-value {
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.accommodation-organization {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.organization-logo img {
  max-height: 60px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.organization-text {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

.accommodation-contact-section {
  padding: 40px 40px;
  background: white;
}

.accommodation-contact-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info {
  max-width: 100%;
}

.contact-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.contact-section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.5;
}

.contact-methods {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.method-icon {
  width: 45px;
  height: 45px;
  background: #006666;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.method-icon svg {
  color: white;
}

.method-content {
  flex: 1;
}

.method-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-value {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.method-value:hover {
  color: #006666;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.btn-accommodation-whatsapp,
.btn-accommodation-website {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-accommodation-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-accommodation-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-accommodation-website {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  color: white;
}

.btn-accommodation-website:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 102, 0.4);
  color: white;
}

.btn-accommodation-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  width: 100%;
  text-align: center;
}

.btn-accommodation-suggestions:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
  color: white;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Estilos para a seção de local melhorada */
.location-hero {
  text-align: center;
  margin-bottom: 50px;
}

.location-hero-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: #006666;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.location-hero-subtitle {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  color: #666;
  line-height: var(--line-height-normal);
}

.location-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.location-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.location-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.location-card-icon i {
  font-size: 24px;
  color: white;
}

.location-card-content h4 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-bold);
  color: #333;
  margin-bottom: var(--spacing-xs);
  line-height: var(--line-height-tight);
}

.location-card-content p {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #666;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.location-gallery {
  margin-top: 50px;
}

.gallery-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: #006666;
  text-align: center;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.gallery-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Estilos para o mapa de localização de borda a borda */
.location-map-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

.location-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.map-header {
  margin-bottom: 40px;
}

.location-map-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: #006666;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.location-map-subtitle {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  color: #666;
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-normal);
}

.map-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.map-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-weight: 500;
}

.map-info-item i {
  color: #006666;
  font-size: 18px;
}

.location-map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  background: white;
  padding: 20px;
  position: relative;
}

.map-marker {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 15px;
  padding: 10px 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.marker-pin {
  width: 30px;
  height: 30px;
  background: #006666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-pin i {
  color: white;
  font-size: 14px;
}

.marker-label {
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* Estilos para a nova seção de hospedagem melhorada */
.accommodation-hero {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
}

.accommodation-badge {
  margin-bottom: 20px;
}

.accommodation-badge span {
  background: rgba(0, 102, 102, 0.1);
  color: #006666;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accommodation-hero-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: #198754;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.accommodation-hero-subtitle {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.accommodation-content {
  margin-top: 40px;
}

.accommodation-info-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.info-card-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  color: #333;
  margin-bottom: var(--spacing-lg);
  text-align: center;
  line-height: var(--line-height-tight);
}

.accommodation-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 20px;
  color: white;
}

.feature-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.feature-content p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.95rem;
}

.accommodation-contact-card {
  background: linear-gradient(135deg, #006666 0%, #004d4d 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.contact-card-title {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-bold);
  color: white;
  margin-bottom: var(--spacing-xs);
  line-height: var(--line-height-tight);
}

.contact-card-subtitle {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-normal);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-normal);
}

.contact-methods {
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
}

.method-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  font-size: 18px;
  color: white;
}

.method-content {
  flex: 1;
}

.method-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.method-value {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.method-value:hover {
  opacity: 0.8;
  color: white;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-accommodation-whatsapp,
.btn-accommodation-website {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-accommodation-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
}

.btn-accommodation-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-accommodation-website {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-accommodation-website:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  color: white;
}

.btn-accommodation-suggestions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  width: 100%;
  text-align: center;
}

.btn-accommodation-suggestions:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.4);
  color: white;
}

.accommodation-organization {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.organization-logo img {
  max-height: 50px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1);
}

.organization-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.accommodation-gallery {
  margin-top: 50px;
  text-align: center;
}

.gallery-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.gallery-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 1rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 20px 20px;
  color: white;
}

.gallery-label {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsividade para o novo layout */
@media (max-width: 991px) {
  .accommodation-contact-card {
    position: static;
    margin-top: 30px;
  }
  
  .location-map-title {
    font-size: 2rem;
  }
  
  .location-map-subtitle {
    font-size: 1rem;
  }
  
  .map-info {
    gap: 20px;
  }
  
  .accommodation-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .accommodation-page-wrapper {
    margin-top: 100px;
  }
  
  .accommodation-hero {
    padding: 30px 20px;
  }
  
  .accommodation-hero-title {
    font-size: 2rem;
  }
  
  .accommodation-hero-subtitle {
    font-size: 1rem;
  }
  
  .accommodation-info-card {
    padding: 25px;
  }
  
  .accommodation-contact-card {
    padding: 25px;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .method-icon {
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-card {
    padding: 20px;
  }
  
  .location-map-title {
    font-size: 1.8rem;
  }
  
  .location-map-subtitle {
    font-size: 0.9rem;
  }
  
  .location-map-wrapper {
    padding: 10px;
  }
  
  .map-info {
    flex-direction: column;
    gap: 15px;
  }
  
  .map-marker {
    position: static;
    margin-top: 15px;
    justify-content: center;
  }
  
  .gallery-title {
    font-size: 1.5rem;
  }
  
  .info-card-title {
    font-size: 1.5rem;
  }
}

/* Sistema Tipográfico Padronizado */
:root {
  /* Hierarquia de Fontes */
  --font-size-hero: 3rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-h5: 1.25rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --font-size-caption: 0.75rem;
  
  /* Pesos de Fonte */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  
  /* Altura de Linha */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;
  
  /* Espaçamento */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
}

/* Padronização de Títulos */
h1, .h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h2, .h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h3, .h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

h4, .h4 {
  font-size: var(--font-size-h4);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-sm);
}

h5, .h5 {
  font-size: var(--font-size-h5);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-xs);
}

/* Padronização de Texto */
p, .text-body {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

.text-small {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
}

.text-caption {
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
}

/* Estilos para a seção de novidades melhorada */
.novidades-hero {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 0;
  background: linear-gradient(135deg, #e8f5f5 0%, #d1e7dd 100%);
  border-radius: 20px;
}

.novidades-badge {
  margin-bottom: 20px;
}

.novidades-badge span {
  background: linear-gradient(135deg, #198754 0%, #146c43 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.novidades-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: #198754;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.novidades-subtitle {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #666;
  max-width: 750px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.novidades-content {
  margin-top: 40px;
}

/* Seção de Texto */
.novidades-text-section {
  margin-bottom: 50px;
}

.novidades-text-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.text-card-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  color: #333;
  margin-bottom: var(--spacing-md);
  line-height: var(--line-height-tight);
}

.text-card-description {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #666;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-md);
}

.novidades-benefits-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  height: 100%;
}

.benefits-title {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-semibold);
  color: #333;
  margin-bottom: var(--spacing-lg);
  line-height: var(--line-height-tight);
}

.novidades-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.benefit-item i {
  font-size: 18px;
  color: #198754;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  color: #333;
  line-height: var(--line-height-normal);
}

/* Seção do Vídeo Central */
.novidades-video-section {
  margin: 50px 0;
}

.video-hero {
  text-align: center;
  border-radius: 25px;
  padding: 50px 40px;
  border: 1px solid #f0f0f0;
}

.video-hero-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-bold);
  color: #333;
  margin-bottom: var(--spacing-sm);
  line-height: var(--line-height-tight);
}

.video-hero-subtitle {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #666;
  margin-bottom: var(--spacing-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: var(--line-height-relaxed);
}

.video-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Seção de Ações */
.novidades-actions-section {
  margin-top: 50px;
  text-align: center;
}

.novidades-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-novidades-primary,
.btn-novidades-secondary,
.btn-novidades-instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 12px;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: var(--line-height-normal);
}

.btn-novidades-primary {
  background: linear-gradient(135deg, #198754 0%, #146c43 100%);
  color: white;
}

.btn-novidades-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(25, 135, 84, 0.4);
  color: white;
}

.btn-novidades-secondary {
  background: transparent;
  color: #198754;
  border: 2px solid #198754;
}

.btn-novidades-secondary:hover {
  background: #198754;
  color: white;
  transform: translateY(-2px);
}

.btn-novidades-instagram {
  background: linear-gradient(135deg, #FC0469 0%, #E1306C 100%);
  color: white;
}

.btn-novidades-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(252, 4, 105, 0.4);
  color: white;
}

/* Estilos para a seção Palavra do Presidente - Design Simples */
.section-bg-dark {
  background-color: #1a1a1a;
  color: white;
}

.presidente-simple-content {
  padding: 60px 0;
}

.presidente-image-section {
  text-align: center;
  margin-bottom: 50px;
}

.presidente-image-container {
  display: inline-block;
}

.presidente-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.presidente-text-section {
  max-width: 800px;
  margin: 0 auto;
}

.presidente-text-content {
  text-align: center;
}

.presidente-simple-text {
  line-height: var(--line-height-relaxed);
}

.presidente-simple-text p {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-normal);
  color: #e0e0e0;
  margin-bottom: 20px;
  text-align: justify;
}

.presidente-signature {
  margin-top: 40px;
  text-align: left;
}

.presidente-signature span {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: #d4af37;
  font-style: italic;
  font-family: 'Brush Script MT', cursive, sans-serif;
}

/* Responsividade para presidente simples */
@media (max-width: 1200px) {
  .presidente-image {
    max-width: 700px;
  }
}

@media (max-width: 991px) {
  .presidente-simple-content {
    padding: 40px 0;
  }
  
  .presidente-image-section {
    margin-bottom: 40px;
  }
  
  .presidente-image {
    max-width: 600px;
  }
  
  .presidente-text-section {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .presidente-simple-content {
    padding: 30px 0;
  }
  
  .presidente-image-section {
    margin-bottom: 30px;
  }
  
  .presidente-image {
    max-width: 400px;
  }
  
  .presidente-text-section {
    max-width: 100%;
    padding: 0 20px;
  }
  
  .presidente-simple-text p {
    font-size: var(--font-size-small);
  }
  
  .presidente-signature span {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .presidente-image {
    max-width: 300px;
  }
  
  .presidente-text-section {
    padding: 0 15px;
  }
  
  .presidente-simple-text p {
    font-size: var(--font-size-caption);
  }
  
  .presidente-signature span {
    font-size: 18px;
  }
}

/* Responsividade para novidades */
@media (max-width: 991px) {
  .novidades-hero {
    padding: 30px 20px;
  }
  
  .novidades-title {
    font-size: var(--font-size-h2);
  }
  
  .novidades-text-card,
  .novidades-benefits-card {
    padding: 30px;
  }
  
  .video-hero {
    padding: 40px 30px;
  }
  
  .video-hero-title {
    font-size: var(--font-size-h3);
  }
  
  .novidades-actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .novidades-hero {
    padding: 25px 15px;
  }
  
  .novidades-title {
    font-size: var(--font-size-h3);
  }
  
  .novidades-subtitle {
    font-size: var(--font-size-small);
  }
  
  .novidades-text-card,
  .novidades-benefits-card {
    padding: 25px;
  }
  
  .text-card-title,
  .benefits-title {
    font-size: var(--font-size-h4);
  }
  
  .video-hero {
    padding: 30px 20px;
  }
  
  .video-hero-title {
    font-size: var(--font-size-h4);
  }
  
  .video-hero-subtitle {
    font-size: var(--font-size-small);
  }
  
  .novidades-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-novidades-primary,
  .btn-novidades-secondary,
  .btn-novidades-instagram {
    padding: 12px 20px;
    font-size: var(--font-size-caption);
    width: 100%;
    max-width: 300px;
  }
}

/* Estilos para a seção de Diretoria */
.diretoria-hero {
  text-align: center;
  margin-bottom: 50px;
}

.diretoria-title {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: #198754;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.diretoria-subtitle {
  font-size: var(--font-size-h5);
  color: #666;
  margin-bottom: 0;
}

.diretoria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.diretoria-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diretoria-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.diretoria-photo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid #f8f9fa;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.diretoria-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.diretoria-card:hover .diretoria-photo {
  transform: scale(1.05);
}

.diretoria-info {
  text-align: center;
  width: 100%;
}

.diretoria-name {
  font-size: var(--font-size-h6);
  font-weight: var(--font-weight-bold);
  color: #333;
  margin-bottom: 8px;
  line-height: var(--line-height-tight);
}

.diretoria-position {
  font-size: var(--font-size-small);
  color: #666;
  margin-bottom: 0;
  font-weight: var(--font-weight-medium);
}

@media (min-width: 1200px) {
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: auto;
  }
}

/* Responsividade da Diretoria */
/* Desktop mantém 4 colunas */
@media (max-width: 1200px) {
  .diretoria-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .diretoria-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .diretoria-card {
    padding: 15px;
  }
  
  .diretoria-photo-container {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  
  .diretoria-name {
    font-size: var(--font-size-small);
  }
  
  .diretoria-position {
    font-size: var(--font-size-caption);
  }
}

/* ========================================
   MOBILE FIRST - OFFCANVAS MENU
   Estilos base para mobile (até 991px)
   ======================================== */

/* ===== MENU MOBILE COM COR BRANCA ===== */
@media (max-width: 991px) {
  /* HEADER MOBILE - SEMPRE VERDE E ÍCONES BRANCOS */
  .navbar {
    background: #004d4d !important;
    box-shadow: none !important;
  }
  
  .navbar-container {
    background: #004d4d !important;
  }
  
  /* Garantir que o logo sempre seja branco no mobile */
  .logo-principal {
    color: #ffffff !important;
  }
  
  /* Garantir que o hamburger sempre seja branco no mobile */
  .navbar-toggler {
    color: #ffffff !important;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  /* Desabilitar efeito de scroll no mobile */
  .navbar.scrolled {
    background-color: #004d4d !important;
  }
  
  .navbar-container.scrolled {
    background: #004d4d !important;
  }
  
  .navbar-container.scrolled .logo-principal {
    color: #ffffff !important;
  }
  
  .navbar-container.scrolled .navbar-toggler {
    color: #ffffff !important;
  }
  
  .navbar-container.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  }
  
  /* OFFCANVAS */
  .offcanvas {
    background-color: #004d4d;
  }
  
  .offcanvas-body {
    display: block;
    visibility: visible;
    overflow: visible;
    overflow-y: auto;
    position: relative;
    z-index: 1;
  }
  
  .offcanvas-body .navbar-nav {
    display: block;
    visibility: visible;
    position: relative;
  }
  
  .offcanvas-body .navbar-nav .nav-item {
    display: block;
    visibility: visible;
    position: relative;
    opacity: 1;
  }
  
  .offcanvas-body .nav-item a {
    display: block;
    visibility: visible;
  }
  
  .offcanvas-body .nav-link {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    text-decoration: none;
  }
  
  /* Regras específicas para TODOS os estados possíveis */
  .offcanvas-body .nav-link:link,
  .offcanvas-body .nav-link:visited,
  .offcanvas-body .nav-link:active {
    color: #ffffff;
    opacity: 1;
    visibility: visible;
  }
  
  .offcanvas-body .nav-link:hover {
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
  }
  
  .offcanvas-body .nav-link:focus,
  .offcanvas-body .nav-link:focus-visible {
    color: #f0f0f0;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
  }
  
  /* Forçar cor após visita - regra com máxima especificidade */
  a.offcanvas-body .navbar-nav .nav-item .nav-link:visited {
    color: #ffffff;
    opacity: 1;
  }
  
  /* Garantir que após transição, elementos ainda estejam visíveis */
  .offcanvas.showing .offcanvas-body,
  .offcanvas.show .offcanvas-body {
    display: block;
    visibility: visible;
  }
  
  /* IMPORTANTE: Sobrescrever cores de links visitados globalmente no offcanvas */
  .offcanvas-body a:any-link {
    color: #ffffff;
  }
  
  /* Especifidade máxima para links visitados */
  .offcanvas a:visited,
  .offcanvas .navbar-nav a:visited,
  .offcanvas-body a:visited,
  .offcanvas-body .navbar-nav .nav-item a.nav-link:visited {
    color: #ffffff;
    opacity: 1;
    visibility: visible;
  }
}

/* ===== TABLETS E MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  /* Offcanvas menu */
  .offcanvas-body .nav-link {
    font-size: 16px;
    color: #ffffff;
  }
  
  /* Diretoria */
  .diretoria-hero {
    margin-bottom: 40px;
  }
  
  .diretoria-title {
    font-size: var(--font-size-h2);
  }
  
  .diretoria-subtitle {
    font-size: var(--font-size-small);
  }
  
  .diretoria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .diretoria-card {
    padding: 15px;
  }
  
  .diretoria-photo-container {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  
  .diretoria-name {
    font-size: var(--font-size-small);
  }
  
  .diretoria-position {
    font-size: var(--font-size-caption);
  }
}

/* ===== MOBILE PEQUENO (max-width: 576px) ===== */
@media (max-width: 576px) {
  .diretoria-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .diretoria-card {
    padding: 20px;
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  
  .diretoria-photo-container {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .diretoria-info {
    text-align: left;
    flex: 1;
  }
  
  .diretoria-name {
    font-size: var(--font-size-small);
    margin-bottom: 5px;
  }
  
  .diretoria-position {
    font-size: var(--font-size-caption);
  }
}

/* Estilos para o header do offcanvas mobile */
@media (max-width: 991px) {
  /* Header com position fixed quando menu mobile está aberto */
  .navbar.mobile-menu-open {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1055;
    background: #004d4d !important;
  }
  
  /* Desabilitar scroll quando menu mobile está aberto */
  body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }
  
  .offcanvas-header {
    background-color: #004d4d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .offcanvas-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.5rem;
  }
  
  .offcanvas-header .btn-close {
    filter: invert(1);
    opacity: 1;
  }
  
  .offcanvas-header .btn-close:hover {
    opacity: 0.75;
  }
}

/* Modal de Políticas de Vendas */
.politicas-content {
    line-height: 1.8;
}

.politicas-content p {
    margin-bottom: 1rem;
}

.politicas-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.politicas-content ul li {
    margin-bottom: 0.5rem;
}

.politicas-content strong {
    color: #006666;
}

.modal-body {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Mensagens do formulário de contato */
.contact-form-message {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid transparent;
}

.contact-form-message.is-success {
  background: rgba(25, 135, 84, 0.12);
  border-color: rgba(25, 135, 84, 0.35);
  color: #146c43;
}

.contact-form-message.is-error {
  background: rgba(220, 53, 69, 0.10);
  border-color: rgba(220, 53, 69, 0.35);
  color: #b02a37;
}

