:root {
  --primary-color: #85826e;
  --secondary-color: #8b866c;
  --accent-color: #789a95;

  --text-dark: #1a1a1a;
  --text-light: #666;

  --bg-light: #cdcabc;
  --bg-white: #ffffff;

  --border-color: #e0e0e0;

  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: #85826e !important;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background-color: #85826e;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
}

.nav a:hover {
  color: var(--primary-color);
}

.btn-header {
  background: #85826e;
  color: white !important;
  padding: 10px 24px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-header:hover {
  background: #85826e;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hero {
  height: 100vh;
  min-height: 600px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1f4437 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./img/imagem-10.jpeg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="30" fill="rgba(255,255,255,0.02)"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  max-width: 800px;
  padding: 40px 24px;
  animation: fadeInUp 1s ease;

}
.hero {
  height: 100vh;
  min-height: 600px;
  background-image: url("./img/imagem-10.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  position: relative;
  margin-top: 70px;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 2;

  color: white;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-title {
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.btn-primary {
  display: inline-block;
  background: #85826e;
  color: var(--text-dark);
  padding: 16px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}
.btn-primary.last{
    background-color: #8b866c;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  background: #85826e;
}

.btn-secondary {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #1f4437;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 64px;
}

.about {
  padding: 100px 0;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  animation: fadeInLeft 1s ease;
}

.about-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}
.about-image{
    width:100%;
}

.about-img{
    width:100%;
    height:auto;
    display:block;
    border-radius:10px;
    object-fit:cover;
}

/* mobile */
@media (max-width:768px){
    .about-img{
        border-radius:8px;
    }
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.highlight-item {
  text-align: center;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.highlight-number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.highlight-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.about-image {
  animation: fadeInRight 1s ease;
}

.image-placeholder {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.image-placeholder svg {
  width: 100%;
  height: auto;
  display: block;
}
.amenity-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.amenity-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
    .amenity-icon img {
        width: 50px;
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .amenity-icon img {
        width: 40px;
        height: 40px;
    }
}

.amenities {
  padding: 100px 0;
  background: var(--bg-light);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.amenity-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.amenity-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.amenity-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.amenity-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.floorplan-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floorplan-img-container {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.floorplan-img-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Responsivo */
@media (max-width: 768px) {
    .floorplan-img-container {
        max-width: 100%;
        padding: 15px;
    }
}

.floorplans {
  padding: 100px 0;
  background: var(--bg-white);
}

.floorplan-viewer {
  max-width: 1000px;
  margin: 0 auto;
}

.floorplan-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: center;
}

.floorplan-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary-color);
}

.floorplan-features {
  list-style: none;
  margin-bottom: 32px;
}

.floorplan-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--text-light);
}

.floorplan-features li:last-child {
  border-bottom: none;
}

.floorplan-navigation {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.floorplan-content{
    display: flex;
    align-items: center;
    gap: 40px;
}

/* MOBILE */
@media (max-width: 768px){

    .floorplan-content{
        flex-direction: column;
    }

    .floorplan-image{
        order: 1;
    }

    .floorplan-info{
        order: 2;
    }

}
@media (max-width:768px){

.floorplan-navigation{
    justify-content:flex-start;
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:10px;
}

/* esconde scrollbar */

.floorplan-navigation::-webkit-scrollbar{
    display:none;
}

.nav-btn{
    flex:0 0 auto;
    white-space:nowrap;
}

}
@media (max-width:768px){

.header .container{
    justify-content:center;
}
}

.nav-btn {
  padding: 12px 32px;
  border: 2px solid var(--primary-color);
  background: white;
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover,
.nav-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gallery {
  padding: 100px 0;
  background: var(--bg-light);
}

.gallery-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* TRACK DO CARROSSEL */
.gallery-images {
  display: flex;
  transition: transform 0.4s ease;
}

/* CADA IMAGEM */
.gallery-item {
  flex: 0 0 50%; /* mostra 2 por vez */
  padding: 12px;
  box-sizing: border-box;
}

.gallery-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
/* Tablet */
@media (max-width: 992px){

.floorplan-image img{
    max-width: 550px;
}

}

/* Mobile */
@media (max-width: 576px){

.floorplan-image img{
    max-width: 100%;
}

}

/* BOTÕES */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  box-shadow: var(--shadow);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* faz o botão ficar na frente */
}

.gallery-carousel{
  position: relative;
  overflow: hidden;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* MOBILE */
@media (max-width:768px){

.gallery-item{
  flex: 0 0 100%; /* 1 imagem no mobile */
}

}
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot:hover,
.dot.active {
  background: var(--primary-color);
  transform: scale(1.2);
}
.map-container img{
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.location-icon img{
    width: 46px;
    height: auto;
    object-fit: contain;
}
.location {
  padding: 100px 0;
  background: var(--bg-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.location-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.location-list {
  list-style: none;
}

.location-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  align-items: start;
}

.location-list li:last-child {
  border-bottom: none;
}

.location-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.location-list strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.location-list p {
  font-size: 14px;
  color: var(--text-light);
}

.contact {
  padding: 100px 0;
  background: var(--bg-light);
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 79, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.privacy-link {
  text-align: center;
  margin-top: 24px;
}

.privacy-link a {
  color: var(--text-light);
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.privacy-link a:hover {
  color: var(--primary-color);
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 48px 0;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-color);
}

.footer-text {
  margin-bottom: 8px;
  opacity: 0.8;
}

.footer-copyright {
  font-size: 14px;
  opacity: 0.6;
  margin-top: 16px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 40px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideDown 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 32px;
  font-weight: 300;
  color: var(--text-light);
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-content h2 {
  margin-bottom: 24px;
  color: var(--primary-color);
  font-size: 28px;
}

.modal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 18px;
}

.modal-body p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-light);
}

.modal-body ul {
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-light);
}

.modal-body ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .floorplan-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-images {
    grid-template-columns: 1fr;
    margin: 0 50px;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-description {
    font-size: 16px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .modal-content {
    padding: 24px;
    margin: 10% auto;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .gallery-images {
    margin: 0 40px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
.logo img{
    height:72px;
    width:auto;
    display:block;
}

/* tablet */
@media (max-width:1024px){
    .logo img{
        height:50px;
    }
}

/* mobile */
@media (max-width:768px){
    .logo img{
        height:55px;
    }
}

/* mobile pequeno */
@media (max-width:480px){
    .logo img{
        height:50px;
    }
}
.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);

    z-index: 999;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* tamanho do ícone */

.whatsapp-float svg{
    width: 30px;
    height: 30px;
}

/* hover */

.whatsapp-float:hover{
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
@media (max-width:768px){

.whatsapp-float{
    width:55px;
    height:55px;
    right:18px;
    bottom:18px;
}

.whatsapp-float svg{
    width:26px;
    height:26px;
}

}
@media (max-width: 768px) {

  .floorplan-content{
    display: flex;
    flex-direction: column;
  }

  .floorplan-image{
    order: 1;
  }

  .floorplan-navigation{
    order: 2;
    margin: 20px 0;
  }

  .floorplan-info{
    order: 3;
  }

}
.floorplan-content{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.floorplan-info{
    flex:1;
}

.floorplan-image{
    flex:1;
}

.floorplan-navigation{
    width:100%;
    margin-top:20px;
}

@media (max-width:768px){

  .floorplan-content{
      flex-direction:column;
  }

}
.floorplan-content{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "info image"
        ". navigation";
    gap:40px;
    align-items:start;
}

.floorplan-info{
    grid-area: info;
}

.floorplan-image{
    grid-area: image;
}

.floorplan-navigation{
    grid-area: navigation;
    margin-top:-20px;
}


/* MOBILE */
@media (max-width:768px){

  .floorplan-content{
      grid-template-columns: 1fr;
      grid-template-areas:
        "image"
        "navigation"
        "info";
  }

}