/* Design Philosophy: Minimalist Corporate Sophistication
   - Deep green (#1a3a2e) + warm gold (#d4af37) + pure white
   - Generous whitespace and hierarchy
   - Architecture photography as protagonist
   - Geometric gold lines as dividers
   - Smooth hover effects and transitions
*/

:root {
  --primary: #d4af37;
  --primary-dark: #1a3a2e;
  --primary-medium: #2d5a50;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --medium-gray: #e5e7eb;
  --dark-gray: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: transparent;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
}

.lang-btn {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 0.375rem;
  background-color: var(--light-gray);
  color: var(--text-dark);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.lang-btn.active {
  background-color: var(--primary);
  color: var(--primary-dark);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a2e 0%, #2d5a50 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-building.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero .subtitle {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}

.feature p {
  font-size: 0.875rem;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary);
  color: var(--primary-dark);
  text-decoration: none;
  border: none;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background-color: #e8c547;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Sections */
section {
  padding: 4rem 0;
}

section h2 {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

section p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Location Section */
.location {
  background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.location-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.location-info p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.location-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  gap: 1rem;
}

.location-item-icon {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.location-item h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.location-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%; /* Remove limite */
  width: 100%;
}

.location-image img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 400px; /* Altura mínima para garantir tamanho */
  object-fit: cover;
}

@media (min-width: 768px) {
  .location-image img {
    min-height: 500px; /* Maior em desktop */
  }
}

@media (min-width: 1024px) {
  .location-image img {
    min-height: 600px; /* Ainda maior em telas grandes */
  }
}
/* Delivery Section */
.delivery {
  background: linear-gradient(135deg, #1a3a2e 0%, #2d5a50 100%);
  color: var(--white);
  text-align: center;
}

.delivery h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.delivery .subtitle {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.delivery-date {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--primary);
  font-weight: 600;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.countdown-item {
  text-align: center;
}

.countdown-number {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  font-family: 'Poppins', sans-serif;
}

.countdown-label {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.delivery-report {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Price Section */
.price {
  background: var(--white);
}

.price-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.price-info h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-units {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.price-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-button-secondary {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  text-decoration: none;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.cta-button-secondary:hover {
  background-color: var(--primary);
  color: var(--primary-dark);
}

.price-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.price-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Units Section */
.units {
  background: var(--light-gray);
}

.units-header {
  text-align: center;
  margin-bottom: 3rem;
}

.units-header h2 {
  margin-bottom: 1rem;
}

.units-header p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.unit-card {
  background: var(--white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.unit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.unit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.unit-size {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.unit-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.unit-sold {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: var(--medium-gray);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.progress-fill {
  height: 100%;
  background-color: var(--primary);
  transition: width 0.5s ease;
}

.cap-rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cap-rate {
  background-color: var(--light-gray);
  padding: 1rem;
  border-radius: 0.375rem;
  text-align: center;
}

.cap-rate-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cap-rate-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1a3a2e 0%, #2d5a50 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-progress {
  max-width: 400px;
  margin: 0 auto 2rem;
}

.cta-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.cta-progress-bar {
  width: 100%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  overflow: hidden;
}

.cta-progress-fill {
  height: 100%;
  background-color: var(--primary);
  transition: width 0.5s ease;
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  margin-bottom: 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--medium-gray);
  padding: 1.5rem 0;
}

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: color 0.3s ease;
}

.faq-trigger:hover {
  color: var(--primary);
}

.faq-trigger::after {
  content: '▼';
  color: var(--primary);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-trigger::after {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-light);
  margin-top: 1rem;
  line-height: 1.8;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a3a2e 0%, #2d5a50 100%);
  color: var(--white);
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-section a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  background-color: #1ead51;
  transform: scale(1.1);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }

  .lang-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }

  section {
    padding: 2rem 0;
  }

  .hero-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .location-content,
  .price-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    flex: 1;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .price-buttons {
    flex-direction: column;
  }

  .cta-button,
  .cta-button-secondary {
    width: 100%;
  }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .cap-rates {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.875rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .countdown-number {
    font-size: 1.5rem;
  }

  .faq-trigger {
    font-size: 0.95rem;
  }
}
/* Unit Images */
.unit-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background: #f5f5f5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.unit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  padding: 10px;
}

.unit-card:hover .unit-image img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .unit-image {
    height: 200px;
  }
}
/* Amenities Section */
.amenities {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1a3a2e 0%, #2d5a45 100%);
  color: white;
}

.amenities-header {
  text-align: center;
  margin-bottom: 4rem;
}

.amenities-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.amenities-header p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.amenity-category {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.amenity-category h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 1rem;
}

.amenity-list {
  display: grid;
  gap: 1rem;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.3s ease;
}

.amenity-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.amenity-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
}

.amenity-item span:last-child {
  font-size: 1rem;
}

/* Smart Home Features */
.smart-home {
  grid-column: span 2;
}

.smart-feature {
  margin-bottom: 1.5rem;
}

.smart-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.smart-feature ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.smart-feature li {
  padding: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Highlights */
.highlights {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  
  .smart-home {
    grid-column: span 1;
  }
  
  .smart-feature ul {
    grid-template-columns: 1fr;
  }
  
  .amenities-header h2 {
    font-size: 2rem;
  }
}
