.lumina__hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.lumina__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.lumina__hero-decoration {
  position: absolute;
  top: 35%;
  right: -10%;
  height: 30%;
  z-index: 1;
  pointer-events: none;
}

.lumina__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background-color: rgba(0, 109, 103, 0.85);
  z-index: 2;
}

.lumina__hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20%;
  color: #fff;
}

.lumina__hero-image {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.lumina__hero-image img {
  height: 5rem;
}

.lumina-tabs-section {
  padding: 5rem 0;
}

.lumina-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1400px;
  padding: 0 2rem;
  margin: 0 auto;
  justify-content: flex-start;
}

.lumina-tab {
  background: #338c6b;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-family: "Gilroy", sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.lumina-tab.active {
  background: #2ecc40;
  color: #fff;
}

.lumina-tabs-contents {
  position: relative;
}

.lumina-tab-content {
  display: none;
}

.lumina-tab-content.active {
  display: flex;
  gap: 2rem;
  max-width: 1400px;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  margin: 3rem auto;
}

.lumina-content-left {
  flex: 1;
  max-width: 500px;
}

.lumina-content-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: end;
}

.lumina-title-bold {
  font-family: "Gilroy", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #000;
}

.lumina-title-highlight {
  font-family: "Hattinant", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #000;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
}

.lumina-title-highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #2ecc40;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  animation: highlightIn 0.8s ease forwards 0.4s;
}

.lumina-content-left p {
  font-family: "Gilroy", sans-serif;
}

.lumina-image-wrapper {
  width: 600px;
}

.lumina-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.lumina-dots {
  position: absolute;
  top: 20%;
  right: -35%;
  height: 150px;
}

.lumina-dots .lumina-dots-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 0;
}

.lumina__video {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 0;
  width: 100%;
}

.lumina__video-content {
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
}

.lumina__video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  display: block;
}

.video-thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: #ffd700;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.play-button i {
  color: #000;
  font-size: 2rem;
  margin-left: 5px;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background-color: #fff;
}

.video-wrapper:hover .video-thumb {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .lumina-tabs {
    justify-content: center;
  }
  .lumina-tab {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
  .lumina-tab-content {
    flex-direction: column;
    align-items: center;
  }
  .lumina-content-left,
  .lumina-content-right {
    max-width: 100%;
  }
  .lumina-image-wrapper {
    width: 100%;
    height: auto;
    max-width: 350px;
  }
  .lumina-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .modal-content {
    width: 95%;
    height: 80vh;
  }
  .lumina-dots .lumina-dots-img {
    display: none;
  }
  .modal-close {
    top: 15px;
    right: 15px;
    font-size: 36px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
  }
}

@media (max-width: 768px) {
  .lumina__video {
    padding: 4rem 0;
  }

  .play-button {
    width: 60px;
    height: 60px;
  }

  .play-button i {
    font-size: 1.5rem;
  }
  .lumina-gallery-header,
  .lumina-awards-header {
    width: 90%;
    margin: auto;
  }
}

.lumina-gallery-section {
  padding: 4rem 0 6rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

.lumina-gallery-header,
.lumina-awards-header {
  text-align: center;
  padding: 0 1rem;
  padding-top: 3rem;
}

.lumina-gallery-header p,
.lumina-awards-header p {
  font-size: 1.1rem;
}

.lumina-gallery-title,
.lumina-awards-title {
  font-family: "Gilroy", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.lumina-gallery-highlight,
.lumina-awards-highlight {
  font-family: "Hattinant", sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #000;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.lumina-gallery-highlight.visible,
.lumina-awards-highlight.visible {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lumina-gallery-highlight::before,
.lumina-awards-highlight::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 60%;
  background-color: #2ecc40;
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}

.lumina-gallery-highlight.visible::before,
.lumina-awards-highlight.visible::before {
  animation: highlightIn 0.8s ease forwards 0.4s;
}

@keyframes highlightIn {
  from {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

.lumina-gallery-desc,
.lumina-awards-desc {
  font-family: "Gilroy", sans-serif;
  font-size: 1.1rem;
  color: #222;
  max-width: 1000px;
  margin: 0 auto;
}

.lumina-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding: 0 1.5rem;
}

.lumina-gallery-grid img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s, box-shadow 0.3s;
}

.lumina-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1200px) {
  .lumina-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .modal-content {
    width: 90%;
    height: 85vh;
  }
}

@media (max-width: 600px) {
  .lumina-gallery-section {
    padding: 2rem 0 3rem 0;
  }

  .lumina-gallery-title,
  .lumina-gallery-highlight,
  .lumina-awards-title,
  .lumina-awards-highlight {
    font-size: 2rem;
  }

  .lumina-gallery-desc,
  .lumina-awards-desc {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .lumina-gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .lumina-gallery-header,
  .lumina-awards-header {
    width: 90%;
    margin: 0 auto 1.5rem auto;
  }

  .modal-content {
    width: 100%;
    height: 70vh;
    padding: 0 10px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 32px;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
  }

  /* Tab styles for mobile */
  .lumina-tabs {
    flex-direction: column;
    align-items: center;
  }

  .lumina-tab {
    width: 100%;
    max-width: 300px;
    margin-bottom: 0.5rem;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Botão de fechar simples e branco */
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1010;
  transition: background-color 0.2s;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.gallery-image {
  cursor: pointer;
  transition: transform 0.3s;
}

.gallery-image:hover {
  transform: scale(1.05);
}

/* Mobile tap outside message */
.tap-outside-message {
  display: none;
}
