/* =========================================================
   ISFQC 2026
   style.css (adaptado para index.html com base no custom.css)
   ========================================================= */

/* IMPORT FONT (Montserrat like custom.css) */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap");

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #6f8f2e;        /* verde principal (logo) */
  --green-dark: #4f6b1f;   /* hover / destaque */
  --olive: #7a8f3a;        /* títulos */
  --red: #c62828;          /* vermelho institucional */
  --black: #111111;
  --white: #ffffff;

  --bg: #ffffff;
  --panel: #f7f8f5;
  --panel-2: #eef1e8;
  --muted: #666666;

  --max: 960px;
  --radius: 10px;
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--bg);
  color: var(--black);
  line-height: 1.7;
}

/* LINKS */
a {
  color: var(--olive);
  text-decoration: none;
  font-weight: 700;
}

a:hover {
  color: var(--red);
  text-decoration: underline;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 20px;
  background-color: #ffffff !important;
  background-image: none !important;
  backdrop-filter: none !important;
  box-shadow: none;


  border-bottom: 1px solid #eeeeee;
}

.logo {
  width: 100px;
  height: auto;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav a:hover {
  color: var(--red);
  text-decoration: none;
}

/* CTA - GREEN (FORCED) */
.registration-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 16px;
  border-radius: 8px;

  background-color: var(--green) !important;
  color: var(--white) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.registration-link:hover {
  background-color: #1e7a3a !important;
  color: var(--white) !important;
  text-decoration: none !important;
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 75vh; /* inspirado no custom.css */
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("images/banner1.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* gradiente parecido com o template */
  background-image: linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.22));
}

.hero-content {
  position: relative;
  max-width: 980px;
  padding: 28px 18px;
  text-align: center;
  color: var(--white);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--white);
}

.event-date {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.92);
}

.hero p {
  font-size: clamp(15px, 2.2vw, 20px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 780px;
  margin: 0 auto;
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 70px 20px;
}

.section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.section:nth-of-type(even) {
  background-color: var(--panel);
}

.section h2 {
  font-size: clamp(26px, 3.2vw, 32px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--olive);

  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 6px solid var(--red);
}

.section p {
  margin-bottom: 16px;
  color: #1a1a1a;
  text-align: justify;
}

/* Placeholder box */
.placeholder-box {
  max-width: var(--max);
  margin: 26px auto 0 auto;
  padding: 34px 24px;
  text-align: center;

  background-color: var(--panel-2);
  border: 2px dashed var(--olive);
  border-radius: var(--radius);
}

.placeholder-box p {
  margin: 0;
  font-size: 16px;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-list {
  list-style: none;
  margin-top: 18px;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-list strong {
  font-weight: 700;
}

/* =========================================================
   SPONSORS
   ========================================================= */
.sponsors {
  background-color: #fafafa;
}

.sponsor-level {
  max-width: var(--max);
  margin: 0 auto 26px auto;
}

.sponsor-level h3 {
  font-weight: 800;
  color: var(--olive);
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 5px solid var(--red);
}

.tba {
  font-style: italic;
  color: var(--muted);
}

/* =========================================================
   ORGANIZATION
   ========================================================= */
.organization {
  background-color: #f0f0f0;
  padding: 70px 20px;
  text-align: center;
}

.organization h2 {
  display: inline-block;
  margin-bottom: 34px;
  padding-left: 14px;
  border-left: 6px solid var(--red);
  color: var(--olive);
  font-weight: 800;
  font-size: clamp(26px, 3.2vw, 32px);
}

.org-logos {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.org-card {
  background-color: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  width: min(320px, 100%);

  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.org-card img {
  max-height: 110px;
  width: auto;
  margin: 0 auto 12px auto;
  display: block;
}

.org-card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}

.venue {
  margin-top: 18px;
  font-size: 15px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background-color: #292929; /* semelhante ao custom.css */
  color: var(--white);
  text-align: center;
  padding: 26px 16px;
  font-size: 13px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .site-header {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 16px;
  }

  .nav {
    justify-content: center;
    gap: 12px;
  }

  .logo {
    width: 135px;
  }

  .section {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .registration-link {
    width: 100%;
    justify-content: center;
  }
}
/* ===============================
   SPEAKERS
   =============================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.speaker-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  border: 1px solid #e6e6e6;
  box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.speaker-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px auto;
  border-radius: 50%;
  background-size: cover;
  background-position: center;

  background-repeat: no-repeat;
  background-color: transparent;
}

.speaker-photo {
  border: 3px solid var(--olive);
}

.speaker-card h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.speaker-card p {
  font-size: 14px;
  color: var(--muted);
}

/* ===============================
   SPONSORS GRID
   =============================== */
/* ===============================
   SPONSORS (FIXED LAYOUT)
   =============================== */

.sponsors {
  text-align: center;
}

/* cada nível */
.sponsor-group {
  margin-bottom: 50px;
}

/* título do nível */
.sponsor-group h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green);
  border-bottom: 2px solid var(--red);
  display: inline-block;
  padding-bottom: 6px;
}

/* grid de logos */
.sponsor-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

/* card do logo */
.sponsor-item {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  height: 120px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
}

/* imagem do logo */
.sponsor-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.sponsor-placeholder {
  background-color: var(--panel-2);
  border: 2px dashed var(--olive);
  border-radius: var(--radius);
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: var(--muted);

}


/* ===============================
   ORGANIZATION
   =============================== */
.organization {
  background-color: #f2f2f2;
  text-align: center;
}

.org-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.org-card {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  max-width: 260px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.org-card img {
  max-height: 110px;
  margin-bottom: 14px;
}

.org-card p {
  font-size: 0.95rem;
  font-weight: 700;
}

.venue {
  margin-top: 30px;
  font-size: 1.05rem;
}

/* ===============================
   ABSTRACT CTA BUTTON
   =============================== */
.abstract-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.abstract-link {
  background-color: var(--red);
  color: var(--white);
  padding: 14px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.abstract-link:hover {
  background-color: var(--green);
  transform: translateY(-2px);
}


/* ===============================
   LANGUAGE NOTICE
   =============================== */
.language-notice {
  background-color: #f4f4f4;
  border-top: 2px solid var(--green);
  padding: 20px;
  text-align: center;
}

.language-notice p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
}
.language-notice {
  background-color: #e8f5e9;
}


.language-notice strong {
  margin-right: 4px;
}

.language-notice p {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ===============================
   PHOTO GALLERY
   =============================== */

.gallery-intro {
  max-width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  color: var(--muted);
}


/* ===============================
   MOBILE LAYOUT
   =============================== */

@media (max-width: 768px) {

  .site-header {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo {
    height: auto;
    max-height: 42px;
  }

  .nav {
    gap: 8px;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 4px 6px;
  }

  .section {
    padding: 40px 16px;
  }
}

  .section h2 {
    font-size: 1.6rem;
  }

 
  /* Sponsors */
  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

    /* Buttons */
  .btn,
  button {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    text-align: center;
    padding: 24px 16px;
  }
}

@media (max-width: 768px) {
  .site-header {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {

  header,
  .site-header,
  .header,
  .navbar {
    position: static !important;
    top: auto !important;
  }
}

@media (max-width: 768px) {

  .logo {
    height: auto;
    max-height: 120px;
    width: auto;
    object-fit: contain;
  }

  .site-header img {
    max-width: 140px;
  }
}


/* ===============================
   FIX SPEAKERS GRID
   =============================== */

.speakers-grid,
.organizers-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch;
}

.speaker-card,
.organizer-card {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.speaker-photo,
.organizer-photo {
  overflow: hidden;
}

@media (max-width: 768px) {
  .speakers-grid,
  .organizers-grid {
    grid-template-columns: 1fr !important;
  }
}


/* ===============================
   NEW GALLERY TEMPLATE
   =============================== */

.gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}

.gallery-masonry img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius);
  break-inside: avoid;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.gallery-masonry img:hover {
  transform: scale(1.02);
}

/* Tablet */
@media (max-width: 1024px) {
  .gallery-masonry {
    column-count: 2;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .gallery-masonry {
    column-count: 1;
  }
}

/* ===============================
   CTA REGISTRATION BUTTON (FIXED)
   =============================== */

a.registration-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;
  border-radius: 8px;

  background-color: var(--green) !important;
  color: #ffffff !important;

  font-weight: 700;
  text-decoration: none !important;
  border: none;
}

a.registration-link:hover,
a.registration-link:focus {
  background-color: #1e7a3a !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

/* SPEAKERS & ORGANIZERS PHOTOS */
.speaker-photo,
.organizer-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 14px auto;

  border-radius: 50%;
  background-size: cover;
  background-position: center 15%;
  background-repeat: no-repeat;

  border: 3px solid var(--green);
}
@media (max-width: 768px) {
  .speaker-photo,
  .organizer-photo {
    width: 110px;
    height: 110px;
  }
}

.gallery-masonry {
  column-count: 3;
  column-gap: 18px;
}

.gallery-masonry img {
  width: 100%;
  margin-bottom: 18px;
  border-radius: var(--radius);
  break-inside: avoid;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
  .gallery-masonry { column-count: 2; }
}

@media (max-width: 768px) {
  .gallery-masonry { column-count: 1; }
}

a.registration-link {
  background-color: var(--green);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
}

a.registration-link:hover {
  background-color: var(--green-dark);
}


.proceedings-list {
  margin-top: 30px;
  padding-left: 20px;
}

.proceedings-list li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.proceedings-list a {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
}

.proceedings-list a:hover {
  text-decoration: underline;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Smaller video for About section */
.video-small {
  max-width: 560px;   /* tamanho controlado */
  margin: 30px auto;  /* centraliza */
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .video-small {
    max-width: 100%;
  }
}

/* About video – controlled size */
.about-video {
  max-width: 560px;
  aspect-ratio: 16 / 9;
  margin: 30px auto;
}

.about-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-video {
    max-width: 100%;
  }
}

/* YouTube thumbnail link (About section) */
.youtube-thumb {
  position: relative;
  display: block;
  max-width: 560px;
  margin: 30px auto;
  border-radius: 8px;
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  display: block;
}

/* Overlay */
.youtube-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.youtube-overlay span {
  background: #ff0000;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Hover effect */
.youtube-thumb:hover .youtube-overlay {
  background: rgba(0, 0, 0, 0.45);
}

/* Mobile */
@media (max-width: 768px) {
  .youtube-thumb {
    max-width: 100%;
  }
}

.video-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red);
}

.text-center p {
  text-align: center;
}

/* Container do Dropdown - mantém o botão alinhado com o menu */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Estilo do botão do Dropdown (para parecer igual aos outros links) */
.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: inherit; /* Usa a mesma cor dos seus links */
  background-color: transparent;
  font-family: inherit; /* Usa a mesma fonte do site */
  margin: 0;
  cursor: pointer;
  padding: 14px 16px; /* Ajuste conforme o espaçamento do seu menu atual */
}

/* O conteúdo do menu (escondido por padrão) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links dentro do dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Cor ao passar o mouse nos links do dropdown */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Mostra o menu ao passar o mouse no container .dropdown */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Efeito para Organization e Sponsors */
.org-card, .sponsor-item {
  transition: transform 0.3s ease; /* Animação suave de 0.3s */
  display: block; /* Garante que o link se comporte como um bloco */
  text-decoration: none; /* Remove o sublinhado do link */
  color: inherit; /* Mantém a cor do texto original */
}

/* O que acontece quando passa o mouse (Hover) */
.org-card:hover, .sponsor-item:hover {
  transform: scale(1.05); /* Aumenta o tamanho em 5% */
  cursor: pointer; /* Mostra o ícone de mãozinha */
}

/* Garante que não apareça linha sublinhada ao passar o mouse */
.org-card, 
.sponsor-item {
  text-decoration: none !important;
  border: none !important;
}

.org-card:hover, 
.sponsor-item:hover {
  text-decoration: none !important;
  border: none !important;
  transform: scale(1.05); /* Mantém o efeito de zoom */
  cursor: pointer;
}

/* Atualize este bloco no seu CSS para incluir .speaker-card */
.org-card, 
.sponsor-item,
.speaker-card { /* Adicionado aqui */
  text-decoration: none !important;
  border: none !important;
  display: block; /* Garante estrutura correta */
  color: inherit; /* Mantém a cor do texto original */
  transition: transform 0.3s ease;
}

.org-card:hover, 
.sponsor-item:hover,
.speaker-card:hover { /* Adicionado aqui */
  text-decoration: none !important;
  border: none !important;
  transform: scale(1.05); /* Efeito de zoom */
  cursor: pointer;
}

/* =========================================
   ESTILOS DA PÁGINA DE PROGRAMAÇÃO (SCHEDULE)
   ========================================= */

.program-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.program-day {
  margin-bottom: 50px;
}

.day-title {
  background-color: #4CAF50; /* Verde do tema */
  color: white;
  padding: 15px;
  margin: 0;
  border-radius: 8px 8px 0 0;
  font-size: 1.5rem;
  font-family: inherit; /* Garante a mesma fonte do site */
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

.schedule-table th, .schedule-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.schedule-table th {
  background-color: #f4f4f4;
  font-weight: bold;
  color: #333;
  width: 20%; /* Largura da coluna de hora */
}

.schedule-table tr:hover {
  background-color: #f9f9f9; /* Efeito ao passar o mouse na linha */
}

.schedule-time {
  font-weight: bold;
  color: #4CAF50;
  white-space: nowrap; /* Evita que a hora quebre linha */
}

.speaker-name {
  font-style: italic;
  color: #666;
  display: block;
  margin-top: 5px;
  font-size: 0.9em;
}

/* Responsividade para celular */
@media (max-width: 600px) {
  .schedule-table th, .schedule-table td {
    display: block;
    width: 100%;
  }
  .schedule-table th {
    background-color: transparent;
    color: #4CAF50;
    padding-bottom: 0;
    border-bottom: none;
  }
  .schedule-table td {
    padding-top: 5px;
  }
}

/* =========================================
   ESTILOS DA PÁGINA VENUE (LOCAL DO EVENTO)
   ========================================= */

.venue-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.venue-title {
  color: #4CAF50; /* Verde do tema */
  margin-bottom: 20px;
  font-size: 2rem;
}

.venue-subtitle {
  margin-bottom: 20px;
  color: #333;
  margin-top: 40px;
  font-size: 1.5rem;
}

.venue-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* Botão do Hotel */
.btn-hotel {
  display: inline-block;
  background-color: #4CAF50;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 40px;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-hotel:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

/* Galeria de Fotos */
.venue-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.venue-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.venue-gallery img:hover {
  transform: scale(1.03);
}


/* Classe auxiliar para destacar link ativo no menu */
.active-page {
  font-weight: bold;
  color: #4CAF50 !important;
}

/* =========================================
   ESTILOS DA PÁGINA "EM CONSTRUÇÃO"
   ========================================= */

.construction-container {
  text-align: center;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.construction-container img {
  max-width: 100%;
  height: auto;
  width: 400px; /* Ajuste o tamanho da imagem aqui */
  margin-bottom: 30px;
}

.construction-text {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 15px;
  font-weight: bold;
}

.construction-subtext {
  color: #888;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Botão de voltar */
.btn-back {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-back:hover {
  background-color: #45a049;
}