/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #8b7355;
  --accent-color: #d4af37;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #999999;
  --background-light: #fafafa;
  --background-white: #ffffff;
  --border-color: #e5e5e5;
  --shadow-light: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
  --font-primary: 'Poppins', sans-serif;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.2;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 3px;
}

.brand-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary-color);
  letter-spacing: 2px;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-header {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-header:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-background img,
.hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(139, 115, 85, 0.1) 100%);
  z-index: -1;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.85) 15%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.15) 75%, rgba(0, 0, 0, 0.05) 90%, transparent 100%);
  
}

.hero-content {
  color: white;
  padding: 1.5rem 2rem;
  z-index: 3;
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 45%, transparent 100%);
  border-radius: 20px !important;
  
}

.hero-text {
  flex: 1;
  max-width: 600px;
  min-width: 300px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
  min-width: 250px;
  flex-shrink: 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1;
  white-space: nowrap;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  opacity: 0.9;
  line-height: 1.3;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-features {
  display: flex;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 0;
}

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

.feature-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.feature-text {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  opacity: 0.7;
  z-index: 4;
}

.hero-scroll span {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: block;
}

.scroll-indicator {
  width: 2px;
  height: 30px;
  background: white;
  margin: 0 auto;
  opacity: 0.5;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* Buttons */
.btn-primary {
  background: var(--accent-color);
  color: var(--primary-color);
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 48px;
}

.btn-primary:hover {
  background: #f4d03f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-height: 48px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.full-width {
  width: 100%;
}

.btn-book {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  min-height: 48px;
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Section Styles */
section {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.section-badge {
  display: inline-block;
  background: var(--background-light);
  color: var(--secondary-color);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 600px;
}

/* About Section */
.about {
  background: var(--background-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--background-light);
  border-radius: 8px;
}

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

.stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  align-items: stretch;
}

.feature-card {
  background: white;
  padding: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding: 0 2rem;
  flex-shrink: 0;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 0 2rem;
  flex: 1;
}

.feature-card .btn-outline {
  margin: auto 2rem 2rem;
  flex-shrink: 0;
}


/* Status da Obra Section */
.status-obra {
  background: var(--background-light);
  padding: 6rem 0;
}

.status-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.status-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.status-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.status-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.progress-container {
  margin: 2rem 0;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

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

.progress-label span:first-child {
  font-weight: 600;
  color: var(--primary-color);
}

.progress-percentage {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  font-family: var(--font-primary);
}

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

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  border-radius: 4px;
  transition: width 0.3s ease;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-item.completed {
  color: var(--secondary-color);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--border-color);
  flex-shrink: 0;
}

.timeline-item.completed .timeline-dot {
  background: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--secondary-color);
}

.status-video {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
  height: 100%;
  margin: 0;
  align-self: stretch;
}

.status-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specifications Section */
.specifications {
  background: var(--background-white);
  padding: 6rem 0;
}

.spec-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
  min-height: 600px;
}

.spec-block.reverse {
  grid-template-columns: 1fr 1fr;
}

.spec-block.reverse .spec-content {
  order: 2;
}

.spec-block.reverse .spec-images {
  order: 1;
}

.spec-content {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.spec-category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: left;
}

.spec-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  width: 100%;
}

.spec-block:first-child .spec-features-grid {
  grid-template-columns: repeat(2, 1fr);
}

.spec-block:nth-child(2) .spec-features-grid {
  grid-template-columns: repeat(2, 1fr);
}

.spec-block:last-child .spec-features-grid {
  grid-template-columns: repeat(3, 1fr);
}

.spec-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  box-shadow: none;
  transition: all 0.3s ease;
  min-height: 80px;
  width: 100%;
  justify-content: flex-start;
}

.spec-feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.spec-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-top: 0;
}

.spec-feature-item span {
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: left;
}

.specs-images {
  background: #2d5016;
  border-radius: 12px;
  padding: 3rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: auto;
}

.spec-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 280px);
  gap: 1.5rem;
  justify-content: center;
}

.spec-image-item {
  border-radius: 8px;
  overflow: hidden;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.spec-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spec-image-item:hover img {
  transform: scale(1.05);
}

.spec-image-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

.specs-features {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.spec-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spec-category:hover .spec-image img {
  transform: scale(1.05);
}

.spec-category {
  background: var(--background-light);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.spec-category:hover {
  transform: translateY(-3px);
}

.spec-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.spec-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--background-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.spec-highlights .highlight-item:hover {
  background: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.spec-highlights .highlight-icon {
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow-light);
  flex-shrink: 0;
}

.spec-highlights .highlight-item span:last-child {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

/* Location Section */
.location {
  background: var(--background-light);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  min-height: 500px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
  justify-content: space-between;
}

.location-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 3rem;
}

.location-highlights {
  display: grid;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon {
  font-size: 1.2rem;
  width: 50px;
  height: 50px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary-color);
}

.highlight-content {
  display: flex;
  flex-direction: column;
}

.highlight-distance {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1;
}

.highlight-place {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.location-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-map img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.location-map iframe {
  flex: 1;
  border-radius: 8px;
}

.map-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.map-marker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  box-shadow: var(--shadow-medium);
}

.marker-dot {
  width: 12px;
  height: 12px;
  background: var(--secondary-color);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(139, 115, 85, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(139, 115, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 115, 85, 0); }
}

.marker-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
}

.location-map iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 8px;
}

/* Gallery Section */
.gallery {
  background: var(--background-white);
}

/* Tour 360 Section */
.tour360 {
  background: var(--background-light);
  padding: 6rem 0;
}

.tour360-container {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.tour360-container iframe {
  width: 100%;
  min-height: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.tour360-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .tour360-container iframe {
      min-height: 400px;
  }
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-tab-btn {
  background: transparent;
  border: 2px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-tab-btn.active,
.gallery-tab-btn:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.gallery-tab-content {
  display: none;
}

.gallery-tab-content.active {
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

.gallery-item.large {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Plants Categories */
.plants-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.plant-category {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease;
}

.plant-category:hover {
  transform: translateY(-3px);
}

.plant-category h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plant-category p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.plant-expand {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease;
}

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

.plant-thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.plant-thumb {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.plant-thumb:hover {
  transform: scale(1.05);
}

.plant-thumb img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-light);
}

.plant-thumb p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.plants-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

/* Plants Section */
.plants {
  background: var(--background-light);
}

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

.plant-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
  position: relative;
}

.plant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.plant-card.featured {
  border: 2px solid var(--accent-color);
}

.plant-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.plant-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.plant-info {
  padding: 2rem;
}

.plant-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.plant-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--background-light);
  border-radius: 6px;
}

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

.spec-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.spec-value {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
}

/* Contact Section */
.contact {
  background: var(--background-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.contact-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  width: 280px;
  margin: 0 auto;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.contact-icon-large {
  width: 80px;
  height: 80px;
  background: var(--background-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--secondary-color);
}

.contact-card:first-child .contact-icon-large {
  background: var(--background-light);
  color: var(--secondary-color);
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-card .btn-primary {
  margin-top: 1.5rem;
}

/* WhatsApp Card Styles */
.whatsapp-card {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #E8F5E9;
  transform: scale(1.05);
  z-index: 2;
  width: 320px;
  margin: 0 auto;
}

.whatsapp-card:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  color: white !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-btn:active {
  transform: translateY(-1px);
}

/* On'Haus Card Styles */
.onhaus-card {
  background: white;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.onhaus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.onhaus-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
 
}

.onhaus-logo-container a {
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.onhaus-logo-container a:hover {
  transform: scale(1.05);
}

.onhaus-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.onhaus-card:hover .onhaus-logo {
  transform: scale(1.05);
}

.onhaus-phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.onhaus-creci {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.onhaus-button-container {
  margin-top: 1rem;
}

.onhaus-btn {
  background: var(--accent-color);
  color: white;
  border: 2px solid var(--accent-color);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.onhaus-btn:hover {
  background: white;
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.contact-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo .brand-name,
.footer-logo .brand-subtitle {
  color: white;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color);
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--accent-color);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: white;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from {
      transform: translateY(-50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  z-index: 1;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-color);
}

.modal-header {
  padding: 3rem 3rem 1rem;
  text-align: center;
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.modal-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.modal-form {
  padding: 2rem 3rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-form input,
.modal-form select {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  z-index: 1000;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

/* Loading States */
.btn-loading {
  position: relative;
  color: transparent;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: currentColor;
  animation: spin 1s ease infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Melhorias de Contraste para Hero */
.hero-badge {
  background: rgba(0, 0, 0, 0.85) !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5) !important;
}

.hero-title {
  text-shadow: 0 3px 6px rgba(0,0,0,0.7) !important;
}

.hero-subtitle {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
  font-weight: 500 !important;
}

.hero-feature-text {
  color: white !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
}

.hero-cta {
  gap: 1.5rem !important;
  margin-top: 2rem !important;
}

/* Plants Layout */
.plants-layout {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plants-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.plants-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plants-options::-webkit-scrollbar {
  width: 4px;
}

.plants-options::-webkit-scrollbar-track {
  background: var(--background-light);
  border-radius: 2px;
}

.plants-options::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}

.plants-options::-webkit-scrollbar-thumb:hover {
  background: var(--text-secondary);
}

.plant-category-card {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 350px;
  display: flex;
  flex-direction: column;
}

.plant-category-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.category-header {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  flex-shrink: 0;
}

.category-icon {
  margin-right: 0.5rem;
  opacity: 0.9;
}

.category-info h3 {
  font-size: 0.9rem;
  margin-bottom: 0.1rem;
  font-weight: 600;
}

.category-info p {
  font-size: 0.7rem;
  opacity: 0.9;
  margin: 0;
}

.plants-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.6rem;
  flex: 1;
  overflow: hidden;
}

.category-footer {
  padding: 0.4rem 0.6rem;
  background: var(--background-light);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.category-footer p {
  font-size: 0.65rem;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

.plant-btn {
  background: var(--background-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: auto;
}

.plant-btn:hover {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: white;
  transform: translateX(4px);
  box-shadow: var(--shadow-light);
}

.plant-btn:active {
  transform: translateX(2px);
}

.plant-btn.active {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: white;
  transform: translateX(4px);
  box-shadow: var(--shadow-medium);
  font-weight: 600;
}

.plant-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.1rem;
}

.plant-btn:hover .plant-name,
.plant-btn.active .plant-name {
  color: white;
}

.plant-area {
  font-size: 0.65rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.1;
}

.plant-btn:hover .plant-area,
.plant-btn.active .plant-area {
  color: rgba(255, 255, 255, 0.9);
}

.plant-badge {
  position: static;
  background: var(--accent-color);
  color: white;
  font-size: 0.5rem;
  padding: 0.1rem 0.3rem;
  border-radius: 2px;
  font-weight: 600;
  line-height: 1;
  margin-top: 0.2rem;
  align-self: flex-start;
}

.plant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.plant-item:hover {
  background: #f8f9fa;
  border-color: var(--accent-color);
  transform: translateX(4px);
}

.plant-item .plant-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
}

.plant-item .plant-area {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0;
}

/* Plant Detail Panel */
.plant-detail-panel {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  min-height: 600px;
  width: 100%;
}

.detail-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px;
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
}

.placeholder-icon {
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.detail-placeholder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.detail-placeholder p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

/* Plant Detail Section */
.plant-detail-section {
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
  overflow: hidden;
  animation: slideDown 0.3s ease-out;
}

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

.detail-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.btn-close {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.plant-detail-content {
  padding: 2rem;
}

.plant-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.plant-info h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.plant-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.plant-area {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.plant-features {
  list-style: none;
  padding: 0;
}

.plant-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.95rem;
}

.plant-features li:last-child {
  border-bottom: none;
}

.plant-images {
  display: flex;
  justify-content: center;
  align-items: center;
}

.plant-main {
  width: 100%;
  height: 500px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.plant-main:hover {
  transform: scale(1.02);
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer-credit a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive Plants Tabs */
@media (max-width: 768px) {
  .plants-tab-list {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
  }
  
  .plants-tab {
      width: 100%;
      max-width: 300px;
      text-align: center;
  }
  
  .plant-detail {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .plant-main {
      height: 350px;
  }
  
  .plants-options {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      max-width: 100%;
  }
  
  .plants-grid-simple {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .plant-detail-panel {
      min-height: 400px;
  }
  
  .status-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
      max-width: 100%;
  }
  
  .status-video {
      width: 320px;
      height: 400px;
      margin: 0 auto;
      align-self: auto;
  }
  
  .status-details,
  .progress-container,
  .timeline {
      padding: 1.5rem;
  }
  
  .detail-placeholder {
      height: 400px;
      padding: 1.5rem;
  }
  
  .detail-placeholder h3 {
      font-size: 1.2rem;
  }
  
  .detail-placeholder p {
      font-size: 0.9rem;
  }
  
  .plants-list {
      padding: 0.5rem;
      gap: 0.15rem;
  }
  
  .plant-btn {
      padding: 0.35rem 0.5rem;
      min-height: 32px;
  }
  
  .plant-name {
      font-size: 0.7rem;
  }
  
  .plant-area {
      font-size: 0.6rem;
  }
  
  .plant-badge {
      font-size: 0.45rem;
      padding: 0.08rem 0.15rem;
  }
  
  .category-header {
      padding: 0.5rem 0.7rem;
  }
  
  .category-info h3 {
      font-size: 0.85rem;
  }
  
  .category-info p {
      font-size: 0.65rem;
  }
}

/* Responsive Design */
@media (min-width: 1600px) {
  .hero-content {
      max-width: 1600px;
      padding: 2rem 3rem;
  }
  
  .hero-text {
      max-width: 700px;
  }
  
  .hero-actions {
      min-width: 300px;
  }
}

@media (max-width: 1200px) {
  .container {
      padding: 0 1.5rem;
  }
  
  .hero-title {
      font-size: 3.5rem;
  }
  
  .section-title {
      font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 1rem;
  }
  
  .nav-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: white;
      flex-direction: column;
      padding: 2rem;
      box-shadow: var(--shadow-medium);
      gap: 1.5rem;
  }

  .nav-menu.active {
      display: flex;
  }

  .nav-toggle {
      display: flex;
  }

  .cta-header {
      display: none;
  }

  .hero-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 100%;
      padding: 1.5rem 1rem;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      width: calc(100% - 2rem);
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.1) 45%, transparent 100%);
      border-radius: 20px !important;
      z-index: 99999 !important;
  }
  
  .hero-overlay::before {
      height: 50%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 15%, rgba(0, 0, 0, 0.65) 30%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.03) 90%, transparent 100%);
  }

  .hero-text {
      max-width: 100%;
  }

  .hero-actions {
      align-items: center;
  }

  .hero-cta {
      flex-direction: column;
      gap: 0.75rem;
      align-items: center;
      width: 100%;
  }
  
  .btn-primary,
  .btn-secondary,
  .btn-book {
      width: 100%;
      max-width: 280px;
      justify-content: center;
  }

  .hero-title {
      font-size: 2.5rem;
  }

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

  .hero-features {
      justify-content: center;
      flex-direction: column;
      gap: 1.5rem;
  }

  .about-grid,
  .location-content,
  .status-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .status-details {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .status-video video {
      height: 300px;
  }
  
  .contact-grid {
      grid-template-columns: 1fr;
  }
  
  .location-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      min-height: auto;
  }
  
  .location-info {
      height: auto;
      justify-content: flex-start;
  }
  
  .location-map {
      height: 400px;
  }

  .about-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
  }

  .gallery-item.large {
      grid-column: span 1;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
  }
  
  .gallery-item {
      aspect-ratio: 4/3;
  }

  .plants-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .plants-grid-simple {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .plant-thumbnails {
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  
  .plant-thumb img {
      height: 100px;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .feature-card {
      height: auto;
  }
  
  .feature-card p {
      flex: none;
      margin-bottom: 1.5rem;
  }
  
  .feature-card .btn-outline {
      margin: 0 2rem 2rem;
  }
  
  .feature-image {
      height: 180px;
  }
  
  .specs-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .spec-highlights {
      grid-template-columns: 1fr;
      gap: 0.75rem;
  }
  
  .spec-highlights .highlight-item {
      padding: 0.6rem;
  }
  
  .spec-highlights .highlight-icon {
      width: 28px;
      height: 28px;
      font-size: 1rem;
  }
  
  .spec-highlights .highlight-item span:last-child {
      font-size: 0.8rem;
  }

  .form-row {
      grid-template-columns: 1fr;
  }

  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }

  .footer-links {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .footer-section {
      text-align: center;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }

  .footer-legal {
      flex-direction: column;
      gap: 1rem;
  }

  .modal-content {
      margin: 10% auto;
      width: 95%;
  }

  .modal-header,
  .modal-form {
      padding: 2rem 1.5rem;
  }

  section {
      padding: 3rem 0;
  }
  
  .specifications {
      padding: 3rem 0;
  }
  
  .plants-cta {
      margin-top: 2rem;
      padding: 2rem 1rem;
      gap: 1.5rem;
  }
  
  .plants-cta .btn-primary,
  .plants-cta .btn-book {
      width: 100%;
      max-width: 280px;
      margin: 0;
  }
  
  .spec-block {
      margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 1rem;
  }

  .nav {
      padding: 1rem;
  }

  .hero-title {
      font-size: 2rem;
  }

  .section-title {
      font-size: 2rem;
  }

  .btn-primary,
  .btn-secondary {
      padding: 0.875rem 1.5rem;
      font-size: 0.9rem;
  }

  .contact-form {
      padding: 2rem 1.5rem;
  }
  
  /* Contact Grid Responsive */
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .contact-card {
      width: 100%;
      max-width: 350px;
  }
  
  /* WhatsApp Card Responsive */
  .whatsapp-card {
      transform: scale(1);
      margin-bottom: 1rem;
      width: 100%;
      max-width: 350px;
  }
  
  .whatsapp-card:hover {
      transform: scale(1.02) translateY(-5px);
  }
  
  .whatsapp-btn {
      padding: 1rem 2rem;
      font-size: 1rem;
  }
  
  .onhaus-logo-container {
      padding: 0.75rem;
      margin-bottom: 1rem;
  }
  
  .onhaus-logo {
      max-width: 100px;
  }
  
  .onhaus-phone {
      font-size: 1rem;
  }
  
  .onhaus-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
  }
  
  .whatsapp-button-container {
      margin-top: 1.5rem;
  }
}

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

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* New Professional Specifications Styles */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.spec-category {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.spec-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.spec-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--background-light);
}

.spec-icon {
  width: 48px;
  height: 48px;
  background: var(--secondary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.spec-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--background-light);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.spec-item span {
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.4;
  font-weight: 500;
  text-align: left;
}

/* Responsive for new specs */
@media (max-width: 768px) {
  .specs-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .spec-block {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      min-height: auto;
      align-items: stretch;
  }
  
  .spec-block.reverse .spec-content {
      order: 1;
  }
  
  .spec-block.reverse .spec-images {
      order: 2;
  }
  
  .spec-features-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      width: 100%;
  }
  
  .spec-block:first-child .spec-features-grid {
      grid-template-columns: 1fr;
  }
  
  .spec-block:nth-child(2) .spec-features-grid {
      grid-template-columns: 1fr;
  }
  
  .spec-block:last-child .spec-features-grid {
      grid-template-columns: 1fr;
  }
  
  .spec-content {
      height: auto;
      justify-content: flex-start;
      align-items: stretch;
  }
  
  .specs-images {
      height: auto;
  }
  
  .spec-feature-item {
      min-width: 100%;
      width: 100%;
      justify-content: flex-start;
  }
  
  .specs-images {
      min-width: 100%;
      padding: 1.5rem;
  }
  
  .spec-image-item {
      width: 100%;
      height: 150px;
      max-width: 200px;
      margin: 0 auto;
  }
  
  .spec-content {
      padding: 2rem;
  }
  
  .spec-category-title {
      font-size: 1.5rem;
      text-align: center;
  }
  
  .feature-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
  }
  
  .spec-image-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
      justify-content: center;
      width: 100%;
  }
  
  .spec-header {
      flex-direction: column;
      text-align: center;
      gap: 0.5rem;
  }
  
  .spec-icon {
      width: 40px;
      height: 40px;
  }
  
  .spec-header h3 {
      font-size: 1.2rem;
  }
}

/* Specifications CTA */
.specifications-cta {
  background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
  padding: 4rem 0;
  margin-top: 2rem;
  border-radius: 20px;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .specifications-cta {
      padding: 3rem 1rem;
      margin-top: 1rem;
  }
  
  .cta-content h3 {
      font-size: 1.5rem;
  }
  
  .cta-content p {
      font-size: 1rem;
  }
  
  .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-book {
      width: 100%;
      max-width: 280px;
  }
}

/* Gallery CTA */
.gallery-cta {
  background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
  padding: 4rem 0;
  margin-top: 2rem;
  border-radius: 20px;
}

/* Status CTA */
.status-cta {
  background: linear-gradient(135deg, var(--background-light) 0%, #f8f9fa 100%);
  padding: 4rem 0;
  margin-top: 2rem;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .gallery-cta,
  .status-cta {
      padding: 3rem 1rem;
      margin-top: 1rem;
  }
  
  .gallery-cta .cta-content h3,
  .status-cta .cta-content h3 {
      font-size: 1.5rem;
  }
  
  .gallery-cta .cta-content p,
  .status-cta .cta-content p {
      font-size: 1rem;
  }
  
  .gallery-cta .cta-buttons,
  .status-cta .cta-buttons {
      flex-direction: column;
      align-items: center;
  }
  
  .gallery-cta .cta-buttons .btn-primary,
  .gallery-cta .cta-buttons .btn-book,
  .status-cta .cta-buttons .btn-primary,
  .status-cta .cta-buttons .btn-book {
      width: 100%;
      max-width: 280px;
  }
}