@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap");
.de-event-landing {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  color: #1f2d3d;
  --de-primary: #002f77;
  --de-secondary: #1d9500;
  --de-accent: #00d084;
  background: #f5f7fb;
}
.de-topnav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.de-event-landing .de-topnav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 6px 24px;
  display: flex !important;
  gap: 16px;
  align-items: center;
  justify-content: center !important;
  position: relative;
}
.de-event-landing .de-topnav-logo {
  margin-right: auto !important;
}
.de-event-landing .de-topnav-menu {
  display: flex !important;
  gap: 16px;
  justify-content: center !important;
}
.de-topnav-link {
  position: relative;
  color: var(--de-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
}
.de-topnav-link:hover {
  background: #eef4ff;
}
.de-topnav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--de-primary), var(--de-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.de-topnav-link:hover::after {
  transform: scaleX(1);
}
.de-topnav-cta {
  margin-left: auto;
  background: var(--de-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.de-topnav-cta-mobile {
  display: none;
  background: var(--de-primary);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.de-mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 21;
}
.de-mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--de-primary, #002f77);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.de-mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.de-mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.de-mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
.de-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 16px 24px;
  z-index: 19;
}
.de-mobile-menu[aria-hidden="false"] {
  display: flex;
}
.de-mobile-link {
  color: var(--de-primary);
  font-weight: 600;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid #eef4ff;
}
.de-mobile-link:last-of-type {
  border-bottom: none;
}
.de-mobile-cta {
  background: var(--de-primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
}
.de-event-landing .container {
  max-width: 1600px;
  margin: 20px auto !important;
  padding: 0 18px;
}
.de-section .container {
  padding-top: 2px;
  padding-bottom: 20px;
}
.de-event-hero .container {
  background: transparent !important;
}
.de-event-hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.de-hero-bg {
  position: absolute;
  inset: 0;
  background: #002f77;
}
.de-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.de-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 47, 119, 0.8) 0%,
    rgba(0, 47, 119, 0.45) 40%,
    rgba(0, 47, 119, 0.15) 70%,
    rgba(0, 47, 119, 0) 100%
  );
}
.de-event-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--de-primary, #002f77);
}
.de-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
  z-index: 2;
}
.de-hero-top {
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.de-event-logo {
  height: 56px;
  margin-bottom: 10px;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.de-event-title {
  font-size: 2.2rem;
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  font-weight: 700;
}
.de-event-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}
.de-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.de-badge-primary {
  background: var(--de-secondary);
  color: #fff;
}
.de-badge-secondary {
  background: var(--de-accent);
  color: #003b25;
}
.de-badge-tertiary {
  background: #ff6b35;
  color: #fff;
}
.de-section {
  padding: 20px 0;
}
.de-section + .de-section {
  margin-top: 0;
}
.de-section-alt {
  background: #ffffff;
}
.de-section-highlight {
  background: #002f770a;
}
.de-event-landing .de-section {
  border-top: 2px solid transparent;
  background-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 32.5%,
    var(--de-primary, #002f77) 32.5%,
    var(--de-primary, #002f77) 67.5%,
    transparent 67.5%,
    transparent 100%
  );
  background-size: 100% 2px;
  background-position: top;
  background-repeat: no-repeat;
}
.de-event-landing .de-section:first-of-type {
  border-top: 0;
  background-image: none;
}
.de-section-title {
  color: var(--de-color-titulos, #002f77);
  margin: 20px 0 24px !important;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.de-event-landing h2,
.de-event-landing h3 {
  color: var(--de-color-titulos, #002f77);
}
.de-card {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 40px 24px;
}
.de-card-flat {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 40px 24px;
}
.de-card-title {
  margin: 0 0 10px;
  color: var(--de-color-titulos, #002f77);
}
.de-content {
  padding: 20px 0;
}
.wys p {
  margin: 0 0 20px;
  color: var(--de-color-textos, #1f2d3d);
}
.wys,
.wys li {
  color: var(--de-color-textos, #1f2d3d);
}
.wys a {
  color: #0056b3;
  text-decoration: underline;
}
.wys ul,
.wys ol {
  padding-left: 20px;
  margin: 0 0 20px 0;
}
.wys li {
  margin-bottom: 0.25em;
  line-height: 1.5;
}
.de-faq {
  border-top: 1px solid #e1e5e9;
}
.de-faq-item {
  border-bottom: 1px solid #e1e5e9;
}
.de-faq-question {
  width: 100%;
  text-align: left;
  background: #f7f9fb;
  border: 0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}
.de-faq-answer {
  padding: 20px;
}
.de-coming-soon {
  color: #3b4c66;
  font-weight: 600;
}

/* Palestrantes compactos */
.de-speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
.de-speaker {
  background: #fff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: visible;
}
.de-speaker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    var(--de-primary, #002f77) 0%,
    var(--de-primary, #002f77) 50%,
    var(--de-secondary, #1d9500) 50%,
    var(--de-secondary, #1d9500) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 0;
}
.de-speaker-border-secondary::before {
  background: linear-gradient(
    135deg,
    var(--de-secondary, #1d9500) 0%,
    var(--de-secondary, #1d9500) 50%,
    var(--de-primary, #002f77) 50%,
    var(--de-primary, #002f77) 100%
  );
}
.de-speaker-info {
  position: relative;
  z-index: 1;
  width: 100%;
}
.de-speaker:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.de-speaker-name {
  margin: 0 0 0 0 !important;
  color: #002f77;
  font-size: 1rem !important;
  line-height: 1.1;
  border: none;
  padding: 0 !important;
}
.de-speaker-name::after {
  display: none !important;
}
.de-speaker-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--de-primary, #002f77) 0%,
    var(--de-primary, #002f77) 50%,
    var(--de-secondary, #1d9500) 50%,
    var(--de-secondary, #1d9500) 100%
  );
  margin: 8px auto 4px;
  border-radius: 2px;
}
.de-speaker-photo img,
.de-speaker-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef2f7;
  margin: 0 auto;
}
.de-speaker-role {
  margin: 6px 0 0;
  color: #3b4c66;
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.de-speaker-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.de-linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("https://cdn-icons-png.flaticon.com/512/174/174857.png")
    no-repeat center/contain;
}
.de-btn-small {
  border: 1px solid var(--de-secondary);
  background: #fff;
  color: var(--de-secondary);
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}
.de-btn-small:hover {
  background: #eef4ff;
}

/* Patrocinadores compactos */
.de-sponsors-level {
  margin-bottom: 16px;
}
.de-sponsors-title {
  color: #002f77;
  margin: 0 0 0;
  font-size: 0.9rem;
  text-align: center;
}
.de-sponsors-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 3px;
  margin: 2px auto 2px !important;
  background: linear-gradient(90deg, #0b3a8a, #0aa36a);
}
.de-sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 12px;
  padding: 4px 12px 8px !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center;
}
.de-sponsors-realizacao-organizacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.de-sponsors-realizacao-organizacao .de-sponsors-level {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .de-sponsors-realizacao-organizacao {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Ocultar botão duplicado do tema */
.back-to-top {
  display: none !important;
}
.de-sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}
.de-sponsor-item img {
  max-height: 48px;
  max-width: 100%;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Tamanhos por nível (escala responsiva e independente) */
.de-sponsors-grid.level-diamante img {
  max-height: clamp(60px, 6vw, 66px);
}
.de-sponsors-grid.level-ouro img {
  max-height: clamp(48px, 5.2vw, 52px);
}
.de-sponsors-grid.level-prata img {
  max-height: clamp(38px, 4.4vw, 42px);
}
.de-sponsors-grid.level-bronze img {
  max-height: clamp(28px, 3.8vw, 32px);
}
.de-sponsors-grid.level-apoio img {
  max-height: clamp(20px, 3.2vw, 25px);
}
.de-sponsors-grid.level-realizacao img,
.de-sponsors-grid.level-realizacao-e-organizacao img,
.de-sponsors-grid.level-organizacao img {
  max-height: clamp(30px, 5.2vw, 36px);
}

/* Modal */
.de-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.de-modal[hidden] {
  display: none;
}
.de-modal .de-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: auto;
  z-index: 10001;
}
.de-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  width: min(560px, 90vw);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 10002;
}
.de-modal-title {
  margin: 0 0 8px;
  color: #002f77;
}
.de-modal-body {
  color: #3b4c66;
  padding: 10px 0 6px;
}
.de-modal-close {
  position: absolute;
  right: 8px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

/* Tooltip para cargo (mostrar texto completo ao passar o mouse) */
.de-speaker-role {
  position: relative;
  cursor: help;
}
.de-speaker-role:hover::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 110%;
  background: #002f77;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: normal;
  min-width: 220px;
  max-width: 80vw;
  z-index: 2002;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
@media (max-width: 900px) {
  .de-grid {
    grid-template-columns: 1fr;
  }
  .de-event-hero {
    height: 320px;
  }
}
@media (max-width: 768px) {
  .de-event-landing .de-topnav-logo {
    display: none !important;
  }
  .de-event-landing .de-topnav-menu {
    display: none !important;
  }
  .de-topnav-cta-mobile {
    display: block !important;
  }
  .de-mobile-menu-toggle {
    display: flex !important;
  }
  .de-event-landing .de-topnav-inner {
    justify-content: space-between !important;
    padding: 8px 16px;
  }
  .de-topnav-cta {
    display: none !important;
  }
  .de-event-title {
    font-size: 1.6rem !important;
  }
}

/* Credenciais de Ingressos */
.de-credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 40px auto;
  justify-items: center;
  max-width: 100%;
  width: 100%;
}
/* Centralizar credenciais quando houver menos de 3 - usando classes específicas */
.de-credentials-grid.cred-1 {
  grid-template-columns: 1fr;
  max-width: 400px;
}
.de-credentials-grid.cred-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
}
@media (max-width: 1024px) {
  .de-credentials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .de-credentials-grid.cred-1 {
    max-width: 100%;
  }
  .de-credentials-grid.cred-2 {
    max-width: 100%;
  }
}
.de-credential-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.de-credential-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.de-cred-card-primary {
  border-color: var(--de-primary, #002f77);
}
.de-cred-card-secondary {
  border-color: var(--de-secondary, #1d9500);
}
.de-cred-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.de-cred-logo-primary,
.de-cred-logo-secondary {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  color: var(--de-primary, #002f77);
}
.de-cred-logo-secondary {
  color: var(--de-secondary, #1d9500);
}
.de-cred-logo-primary svg,
.de-cred-logo-secondary svg {
  width: 100%;
  height: 100%;
}
.de-cred-name {
  margin: 0;
  color: var(--de-color-titulos, #002f77);
  font-size: 1rem !important;
  font-weight: 700;
  line-height: 1.2;
}
.de-cred-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: center;
}
.de-cred-features li {
  color: var(--de-color-textos, #1f2d3d);
  padding: 6px 0;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.de-cred-features li::before {
  content: "✓";
  color: var(--de-secondary, #1d9500);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.de-cred-price {
  margin: 20px 0;
  padding: 16px 0;
  border-top: 2px solid #e8edf5;
  border-bottom: 2px solid #e8edf5;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.de-price-old {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-right: 8px;
  font-weight: 500;
  color: #999;
  text-decoration: line-through;
}
.de-price-old .de-price-currency {
  font-size: 0.7rem;
}
.de-price-old span:not(.de-price-currency) {
  font-size: 0.85rem;
}
.de-price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--de-color-textos, #1f2d3d);
}
.de-price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--de-primary, #002f77);
  line-height: 1;
}
.de-cred-btn {
  width: auto;
  max-width: 90%;
  padding: 12px 28px;
  border: 0;
  border-radius: 12px;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin: 8px auto 0;
  display: block;
  text-align: center;
}
.de-cred-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}
.de-cred-btn:active {
  transform: scale(0.98);
}
.de-cred-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.de-lote-validade {
  text-align: center;
  color: var(--de-color-titulos, #002f77);
  margin: 0 auto 24px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}
.de-ingressos-info,
.de-ingressos-duvidas {
  text-align: center;
  color: var(--de-color-textos, #1f2d3d);
  margin: 24px auto 32px;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 1000px;
}
.de-whatsapp-link {
  color: var(--de-secondary, #1d9500);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.de-whatsapp-link:hover {
  color: var(--de-primary, #002f77);
  text-decoration: none;
}
.de-payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  padding: 24px 0;
  flex-wrap: wrap;
}
.de-payment-methods img {
  height: auto;
  max-height: 60px;
  width: auto;
}
.de-payment-seal img {
  height: auto;
  max-height: 80px;
  width: auto;
}
@media (max-width: 768px) {
  .de-credentials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
    max-width: 100%;
  }
  .de-credentials-grid.cred-1,
  .de-credentials-grid.cred-2 {
    grid-template-columns: 1fr !important;
    max-width: 100%;
  }
  .de-payment-info {
    gap: 20px;
  }
  .de-payment-methods img,
  .de-payment-seal img {
    max-height: 50px;
  }
}

/* Local do Evento */
.de-event-location {
  margin-top: 32px;
}
.de-location-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.de-location-address,
.de-location-gallery {
  background: #fff;
  border: 1px solid #e1e5e9;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.de-location-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px 0;
  color: var(--de-color-titulos, #002f77);
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.de-location-title i {
  color: var(--de-secondary, #1d9500);
  font-size: 1.1rem;
}
.de-location-text {
  margin: 0;
  color: var(--de-color-textos, #1f2d3d);
  font-size: 1rem;
  line-height: 1.7;
}
.de-map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.de-location-gallery .de-location-title {
  margin-bottom: 20px;
}
.de-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.de-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.de-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.de-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.de-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.de-gallery-item:hover .de-gallery-overlay {
  opacity: 1;
}
.de-gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .de-location-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .de-location-address,
  .de-location-gallery {
    padding: 20px;
  }
  .de-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Modal de Imagens */
.de-image-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.de-image-modal[aria-hidden="false"] {
  display: flex;
}
.de-image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}
.de-image-modal-content {
  position: relative;
  z-index: 10001;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.de-image-modal-image-wrapper {
  position: relative;
  max-width: 100%;
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.de-image-modal-image-wrapper img {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
}
.de-image-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #002f77;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10002;
}
.de-image-modal-close:hover {
  background: #fff;
  transform: scale(1.1);
}
.de-image-modal-prev,
.de-image-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: #002f77;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10002;
}
.de-image-modal-prev {
  left: -60px;
}
.de-image-modal-next {
  right: -60px;
}
.de-image-modal-prev:hover,
.de-image-modal-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.de-image-modal-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #002f77;
}
@media (max-width: 768px) {
  .de-image-modal-content {
    max-width: 95vw;
  }
  .de-image-modal-close {
    top: -40px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  .de-image-modal-prev {
    left: 10px;
    width: 36px;
    height: 36px;
  }
  .de-image-modal-next {
    right: 10px;
    width: 36px;
    height: 36px;
  }
  .de-image-modal-counter {
    bottom: -40px;
    font-size: 0.85rem;
    padding: 6px 12px;
  }
}

/* Sessões Customizadas */
.de-custom-section {
  margin: 24px 0;
  padding: 20px 0;
  border-top: 2px solid transparent;
  background-image: linear-gradient(
    to right,
    transparent 0%,
    transparent 32.5%,
    var(--de-primary, #002f77) 32.5%,
    var(--de-primary, #002f77) 67.5%,
    transparent 67.5%,
    transparent 100%
  );
  background-size: 100% 2px;
  background-position: top;
  background-repeat: no-repeat;
}
.de-custom-section:first-child {
  margin-top: 0;
  border-top: 0;
  background-image: none;
}
.de-custom-section:last-child {
  margin-bottom: 0;
}

/* Rodapé landing */
/* Regras do rodapé removidas por solicitação - o estilo está inline no HTML */
