/* Fontes */
@font-face {
  font-family: "Meganté";
  src: url("../fonts/Megante-Regular.woff2") format("woff2"),
       url("../fonts/Megante-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset e estilos base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Aplicar fonte Meganté em todos os títulos */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title-white,
.hero-title,
.gallery-main-title,
.floor-plan-info-title,
.overview-number {
  font-family: "Meganté", sans-serif;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.container {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation Bar */
.navbar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-link {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/bg-header.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
}

/* Fix para iOS - background-attachment: fixed não funciona bem */
@supports (-webkit-touch-callout: none) {
  .hero {
    background-attachment: scroll;
  }
}

.hero .container {
  position: relative;
}

.hero-logo-wrapper {
  margin-bottom: 30px;
  text-align: right;
}

.hero-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: inline-block;
}

.hero-content {
  color: white;
  padding: 60px 0;
  width: 100%;
}
.hero-content .row {
  height: calc(100vh - 200px);
}
.hero-content .col-xs-12 {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
}
.hero-title {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 800px;
  text-align: right;
  margin-left: auto;
}

.hero-features {
  margin-bottom: 40px;
  text-align: right;
}

.hero-feature-item {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.6;
  color: white;
  text-align: right;
}

.btn-hero {
  background-color: #8c8883;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 25px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.hero .btn-hero {
  margin-bottom: 2rem;
}

.btn-hero:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.btn-hero-arrow {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 992px) {
  .hero-logo-img {
    height: 50px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-content {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 40px;
    background-attachment: scroll;
  }

  .hero-logo-wrapper {
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-logo-img {
    height: 45px;
  }

  .hero-content .col-xs-12 {
    align-items: center;
  }

  .hero-title {
    font-size: 20px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-features {
    text-align: center;
  }

  .hero-feature-item {
    text-align: center;
    font-size: 19px;
  }

  .btn-hero {
    width: 100%;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Virtual Tour Section */
.virtual-tour {
  background-color: #253558;
  padding: 80px 0;
  position: relative;
}

.section-title-white {
  color: white;
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 40px;
  text-align: center;
}
.video-content {
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
  margin-top: 4rem;
  padding: 2rem;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  background-color: #000;
}

.tour-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  cursor: pointer;
}

.video-thumbnail.hidden {
  display: none;
}

.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid #1a4d7a;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.play-button:hover {
  transform: scale(1.1);
}

.floating-button {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #4caf50;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Botão WhatsApp Flutuante */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
  }
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* Gallery Images Section */
.gallery-images {
  background-color: white;
  padding: 80px 0;
}

.gallery-main-title {
  color: #727272;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Meganté", sans-serif;
}

.gallery-main-description {
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.gallery-filters {
  display: flex;
  justify-content: stretch;
  gap: 1rem;
  width: 100%;
}

.gallery-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  background-color: #5970a5;
  color: white;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  width: 25%;
}

.gallery-filter-btn:hover {
  background-color: #0a1328;
  transform: none;
  box-shadow: none;
}

.gallery-filter-btn.active {
  background-color: #0a1328;
  box-shadow: none;
}

.gallery-filter-btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.gallery-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.gallery-image-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease-out;
  opacity: 0;
  transform: translateY(20px);
  cursor: pointer;
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery-image-item.hidden {
  display: none;
  opacity: 0;
}

.gallery-image-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Estilos para a nova estrutura da galeria (Fancybox) */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-bg {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-bg {
  transform: scale(1.05);
}

/* Aviso de Cookies e Privacidade (LGPD) */
.warning {
  position: fixed;
  left: 0;
  bottom: 15px;
  right: 0;
  margin: 0 auto;
  z-index: 997;
}

.warning_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.warning-wrapper {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 15px;
}

.warning_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.warning_text-area {
  width: 88%;
}

.warning_text {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  margin: 0;
}

.warning_link {
  color: #253558;
  font-weight: 600;
  text-decoration: underline;
  transition: 0.5s ease;
}

.warning_link:hover {
  color: #151515;
}

.warning_button-area {
  width: 9%;
}

.warning_button {
  display: block;
  width: 100%;
  background-color: #253558;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  border: 2px solid #253558;
  border-radius: 4px;
  padding: 8px;
  cursor: pointer;
  transition: 0.5s ease;
}

.warning_button:hover {
  background-color: #ffffff;
  color: #253558;
}

@media (max-width: 1450px) {
  .warning_text-area {
    width: 90%;
  }

  .warning_text {
    font-size: 12px;
  }

  .warning_button {
    font-size: 12px;
  }

  .warning_button-area {
    width: 9%;
  }
}

@media (max-width: 575px) {
  .warning_box {
    justify-content: center;
    flex-direction: column;
  }

  .warning_text-area {
    width: 100%;
  }

  .warning_text {
    text-align: center;
    font-size: 11px;
    line-height: 1.65;
  }

  .warning_button-area {
    width: 25%;
    text-align: center;
    margin: 10px 0 0;
  }

  .warning_button {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .gallery-images-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {


  .gallery-main-description {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .gallery-filters {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .gallery-filter-btn {
    padding: 16px 12px;
    font-size: 12px;
    width: 100%;
    flex: none;
    border-right: none;
  }

  .filter-icon {
    width: 16px;
    height: 16px;
  }

  .gallery-images-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-image-item {
    height: 250px;
  }
}

/* Gallery Section */
.gallery {
  background-color: white;
  padding: 80px 0;
}

.section-title {
  color: #727272;
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
}

/* Plantas do Condomínio */
.gallery-plant-item {
  width: 100%;
  margin-bottom: 60px;
}

.gallery-plant-item:last-child {
  margin-bottom: 0;
}

.gallery-plant-title {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #bfbbb4;
  margin: 60px auto 30px auto;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-top: 0;
  display: inline-block;
  width: 65%;
  text-transform: uppercase;
}

.gallery-plant-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

.gallery-plant-features {
  margin-top: 30px;
  padding: 0;
  counter-reset: list-counter;
  display: flex;
  justify-content: center;
}

.gallery-plant-features.mobile-only {
  display: none !important;
}

.gallery-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: fit-content;
}

.gallery-features-list li {
  font-size: 14px;
  color: #333;
  padding: 12px 0 12px 50px;
  border-bottom: none;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.gallery-features-list li:before {
  content: counter(list-counter);
  counter-increment: list-counter;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #727272;
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .gallery-plant-features.mobile-only {
    display: flex !important;
  }

  .gallery-features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: fit-content;
  }

  .gallery-features-list li {
    padding-left: 50px;
    padding: 12px 0 12px 50px;
    border-bottom: none;
  }

  .gallery-plant-title {
    font-size: 12px;
    padding: 10px 16px;
    margin-bottom: 20px;
  }

  .gallery-plant-item {
    margin-bottom: 40px;
  }
}

.btn-secondary {
  background-color: #666;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

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

.btn-secondary-arrow {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .btn-secondary {
    font-size: 16px;
  }

  #galleryCTA span {
    display: none;
  }

  #galleryCTA::before {
    content: "ENTRE EM CONTATO";
  }

  #galleryManagerCTA span {
    display: none;
  }

  #galleryManagerCTA::before {
    content: "FALE COM UM GERENTE";
  }

  #contactAmenities span {
    display: none;
  }

  #contactAmenities::before {
    content: "ENTRE EM CONTATO";
  }

  #floorPlansCTA span {
    display: none;
  }

  #floorPlansCTA::before {
    content: "QUERO PERSONALIZAR";
  }
}

/* Key Features Section */
.key-features {
  background-color: #1a4d7a;
  padding: 80px 0;
}

.feature-card {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #333;
}

.feature-number {
  font-size: 64px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-label {
  font-size: 18px;
  color: #666;
}

/* Amenities Section */
.amenities {
  background-color: #253558;
  padding: 80px 0;
}

.amenities-badge {
  display: inline-block;
  background-color: transparent;
  color: white;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid white;
  border-radius: 0;
}

.amenities-description {
  color: white;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.amenity-card {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 0;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.amenity-card:hover {
  transform: none;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.05);
}

.amenity-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.amenity-text {
  font-size: 14px;
  color: white;
  font-weight: 400;
  line-height: 1.4;
}

.btn-amenities {
  background-color: white;
  color: #bfbbb4;
  border: 1px solid white;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-amenities:hover {
  background-color: transparent;
  color: white;
}

.btn-amenities-arrow {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .amenity-card {
    min-height: 150px;
    padding: 20px 15px;
  }

  .amenity-icon-img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .amenity-text {
    font-size: 13px;
  }
}

/* Overview Section */
.overview {
  background-color: #253558;
  padding: 80px 0;
}

.overview .section-badge,
.virtual-tour .section-badge {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  border-radius: 0;
  box-shadow: none;
}

.overview-card {
  background-color: white;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overview-icon-wrapper {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #727272;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.overview-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.overview-number {
  font-size: 55px;
  font-weight: 300;
  color: #727272;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1;
}

.overview-description {
  font-size: 14px;
  color: #727272;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .overview-card {
    padding: 35px 25px;
    min-height: 180px;
  }

  .overview-icon-wrapper {
    width: 50px;
    height: 50px;
    top: -15px;
  }

  .overview-icon {
    width: 28px;
    height: 28px;
  }

  .overview-number {
    font-size: 40px;
    margin-top: 15px;
  }

  .overview-description {
    font-size: 14px;
  }
}

/* Floor Plans Section */
.floor-plans {
  background-color: white;
  padding: 80px 0;
}

/* Imagens das Plantas (Lista Vertical) */
.floor-plan-images-wrapper {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}

.floor-plan-images {
  display: none;
  width: 100%;
}

.floor-plan-images.active {
  display: block;
  animation: fadeIn 0.5s;
}

.floor-plan-image-item {
  width: 100%;
  margin-bottom: 30px;
  padding: 0;
}

.floor-plan-image-item:last-child {
  margin-bottom: 0;
}

.floor-plan-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  cursor: default;
  user-select: none;
  margin-bottom: 15px;
}

.floor-plan-image-caption {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #bfbbb4;
  margin: 0;
  padding: 12px 20px;
  letter-spacing: 0.5px;
  border: 1px solid #bfbbb4;
  border-top: 0;
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
}

/* Abas (Tap Passador) */
.floor-plan-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 0;
}

.tab-btn {
  background-color: white;
  border: 2px solid #ddd;
  padding: 15px 24px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
  border-radius: 4px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 180px;
}

.tab-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.tab-area {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
}

.tab-btn.active {
  background-color: #1a4d7a;
  color: white;
  border-color: #1a4d7a;
}

.tab-btn.active .tab-area {
  opacity: 1;
}

.tab-btn:hover:not(.active) {
  background-color: #f5f5f5;
  border-color: #bbb;
}

/* Container de Informações */
.floor-plan-info-container {
  position: relative;
  min-height: 200px;
  margin-top: 40px;
}

.floor-plan-info {
  display: none;
  animation: fadeIn 0.5s;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.floor-plan-info.active {
  display: block;
}

.floor-plan-info-title {
  font-size: 28px;
  color: #727272;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.floor-plan-info-area {
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}

.floor-plan-divider {
  width: 100%;
  height: 1px;
  background-color: #ddd;
  margin: 20px 0 30px 0;
}

/* Lista de Características */
.floor-plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.floor-plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  transition: all 0.3s;
}

.feature-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.floor-plan-feature-item span {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  text-align: left;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .floor-plan-image-item {
    margin-bottom: 20px;
  }

  .floor-plan-image-caption {
    font-size: 14px;
    padding-top: 8px;
  }

  .floor-plan-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    font-size: 14px;
    padding: 15px 20px;
    width: 100%;
    min-width: 100%;
  }

  .tab-title {
    font-size: 14px;
  }

  .tab-area {
    font-size: 13px;
  }

  .tab-area {
    font-size: 11px;
  }

  .floor-plan-info {
    padding: 25px 20px;
  }

  .floor-plan-info-title {
    font-size: 22px;
  }

  .floor-plan-info-area {
    font-size: 18px;
  }

  .floor-plan-feature-item span {
    font-size: 14px;
  }

  .feature-icon-img {
    width: 20px;
    height: 20px;
  }
}

/* Location Section */
.location {
  background-color: white;
  padding: 80px 0;
}

.location-subtitle {
  color: #666;
  font-size: 16px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.establishments-list {
  margin-bottom: 20px;
  text-align: center;
}

.establishment-item {
  padding: 8px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.establishment-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon-seta-rigth.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.location-address {
  margin: 20px 0 40px 0;
  color: #333;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
}

.address-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.map-container {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid #ddd;
}

#map {
  width: 100%;
  height: 500px;
}

.location-buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn-google-maps {
  background-color: #d32f2f;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-google-maps:hover {
  background-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
}

.btn-waze {
  background-color: #33ccff;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-waze:hover {
  background-color: #00b3e6;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(51, 204, 255, 0.3);
}

.btn-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .map-container {
    height: 400px;
    margin-top: 20px;
  }

  .location-address {
    font-size: 16px;
  }

  .establishment-item {
    font-size: 14px;
  }

  /* Lista contínua no mobile */
  .location .col-xs-6 {
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .location-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .btn-google-maps,
  .btn-waze {
    width: 100%;
  }
}

/* CTA Section */
.cta-section {
  width: 100%;
  position: relative;
  padding: 100px 0;
}

.cta-background {
  background-image: url("../images/bg-cta.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.cta-title {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: white;
  opacity: 0.95;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  position: relative;
  display: inline-block;
  padding-left: 60px;
}

.cta-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: white;
  display: inline-block;
}

/* Botão com Seta - Classe Reutilizável */
.btn-with-arrow {
  background-color: rgba(162, 162, 162, 0.8);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn-with-arrow-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.btn-with-arrow:hover {
  background-color: rgba(162, 162, 162, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mantém compatibilidade com cta-button */
.cta-button {
  background-color: rgba(162, 162, 162, 0.8);
  color: white;
  border: none;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(5px);
}

.cta-button:hover {
  background-color: rgba(162, 162, 162, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cta-arrow {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 24px;
  }

  .cta-subtitle {
    font-size: 16px;
    padding-left: 0;
  }

  .cta-subtitle::before {
    display: none;
  }

  .cta-background {
    min-height: 500px;
  }

  .cta-section {
    padding: 60px 0;
  }
}

/* About Builder Section */
.about-builder {
  background-color: transparent;
  padding: 80px 0;
}
.about-builder .section-title {
  text-align: start;
  margin-top: 20px;
}

.builder-image {
  width: 80%;
  overflow: hidden;
  margin-right: 0;
  margin-left: auto;
}

.builder-image-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-builder-content {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .about-builder-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .builder-image {
    max-width: 100%;
    width: 100%;
  }
}

/* Section Badge - Reutilizável para todas as seções */
.section-badge {
  display: inline-block;
  color: #bfbbb4;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  border: 1px solid #bfbbb4;
}

/* Mantém compatibilidade com about-badge */
.about-badge {
  display: inline-block;
  background-color: #f0f0f0;
  color: #333;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-divider {
  width: 60px;
  height: 2px;
  background-color: #1a4d7a;
  margin: 20px 0;
}

.about-subtitle {
  font-size: 18px;
  color: #727272;
  font-weight: 300;
  margin: 30px 0;
  letter-spacing: 1px;
  position: relative;
  padding-left: 60px;
}

.about-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: #727272;
  display: inline-block;
}

.builder-name {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: bold;
}

.builder-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 35px;
}
.builder-description:last-child {
  margin-bottom: 0;
}

/* About Architect Section */
.about-architect {
  background-color: #fffaf3;
  padding: 80px 0;
}
.about-architect .section-title {
  font-size: 31px;
}

.architect-image {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #bfbbb4;
  border-width: 0 1px 1px 0;
  padding: 2rem;
}

.architect-image-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.about-architect-content {
  padding-left: 20px;
}

.about-architect-content .section-badge{
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

@media (max-width: 768px) {
  .about-architect .row {
    flex-direction: column;
  }

  .about-architect .col-xs-12:first-child {
    order: 2;
  }

  .about-architect .col-xs-12:last-child {
    order: 1;
  }

  .about-architect-content {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 30px;
  }

  .architect-image {
    margin-top: 30px;
    max-width: 100%;
    width: 100vw;
  }

  .about-architect .section-title {
    text-align: left;
  }
}

.architect-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Construction Section */
.construction {
  background-color: white;
  padding: 80px 0;
}

.construction-image {
  width: 100%;
  padding-top: 75%;
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-radius: 8px;
}

.construction-description {
  color: #666;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: #000;
  padding: 60px 0 30px;
  color: white;
}
.footer-logo{
  max-width: 200px;
  margin: 0 auto;
}
.footer-logo img{
  max-width: 100%;
  height: auto;
}
.footer-logo .logo-text {
  color: white;
  font-size: 36px;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.social-icon:hover {
  background-color: white;
  color: #000;
}

.copyright {
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-divider {
  width: 45%;
  height: 1px;
  background-color: white;
  margin: 30px auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.7;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}

.video-modal-close:hover {
  opacity: 0.7;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.image-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  line-height: 1;
}

.image-modal-close:hover {
  opacity: 0.7;
}

.image-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 10;
  padding: 0;
  backdrop-filter: blur(5px);
}

.image-modal-nav:hover {
  background-color: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.image-modal-prev {
  left: 20px;
}

.image-modal-next {
  right: 20px;
}

.image-modal-counter {
  position: absolute;
  top: -40px;
  left: 0;
  color: white;
  font-size: 16px;
  font-weight: 500;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.image-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  transition: opacity 0.3s;
}

@media (max-width: 768px) {
  .image-modal-content {
    width: 95%;
    padding: 10px;
  }

  .image-modal-close {
    top: 10px;
    right: 10px;
    font-size: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .image-modal-nav {
    width: 40px;
    height: 40px;
  }

  .image-modal-prev {
    left: 10px;
  }

  .image-modal-next {
    right: 10px;
  }

  .image-modal-counter {
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    padding: 6px 12px;
  }

  .image-modal-img {
    max-height: 85vh;
  }
}

/* Form Modal */
.form-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
  overflow-y: auto;
}

.form-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.form-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background-color: white;
  padding: 40px;
  border-radius: 0;
  margin: 40px auto;
}

.form-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #727272;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 10;
  line-height: 1;
}

.form-modal-close:hover {
  opacity: 0.7;
}

.form-modal-title {
  font-family: "Meganté", sans-serif;
  font-size: 32px;
  color: #727272;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 300;
}

.form-modal-subtitle {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #727272;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-size: 16px;
  font-family: "Meganté", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #727272;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-form-submit {
  background-color: #666;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.btn-form-submit:hover {
  background-color: #555;
  transform: translateY(-2px);
}

.btn-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-alert {
  margin-top: 15px;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}

.form-alert.error {
  background-color: #fee;
  color: #c33;
  border: 1px solid #fcc;
}

.form-alert.success {
  background-color: #efe;
  color: #3c3;
  border: 1px solid #cfc;
}

@media (max-width: 768px) {
  .form-modal-content {
    width: 95%;
    padding: 30px 20px;
    margin: 20px auto;
  }

  .form-modal-title {
    font-size: 24px;
  }

  .form-modal-close {
    top: 10px;
    right: 15px;
    font-size: 30px;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.gallery-item-wrapper {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .section-title,
  .section-title-white {
    font-size: 24px;
  }

  .logo-text {
    font-size: 32px;
  }

  .feature-number {
    font-size: 48px;
  }

  .nav-link {
    margin: 0 8px;
    font-size: 12px;
  }
}
