
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');
    
    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
    }
    
    .hero-estate {
      background: linear-gradient(rgba(139, 69, 19, 0.85), rgba(139, 69, 19, 0.7)), 
                  url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    
    .section-title {
      position: relative;
      display: inline-block;
    }

    
    .section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 177, 156, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}


    .section-title::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 4px;
      background: linear-gradient(to right, #8B4513, #BFA77F);
      bottom: -10px;
      left: 0;
      border-radius: 2px;
    }
    
    .feature-card {
      transition: all 0.3s ease;
      border-left: 4px solid transparent;
    }
    
    .feature-card:hover {
      transform: translateX(5px);
      border-left-color: #8B4513;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(6, 200px);
      gap: 1rem;
    }
    
    .gallery-item-1 { grid-column: 1 / 8; grid-row: 1 / 4; }
    .gallery-item-2 { grid-column: 8 / 13; grid-row: 1 / 3; }
    .gallery-item-3 { grid-column: 8 / 13; grid-row: 3 / 5; }
    .gallery-item-4 { grid-column: 1 / 5; grid-row: 4 / 7; }
    .gallery-item-5 { grid-column: 5 / 9; grid-row: 4 / 7; }
    .gallery-item-6 { grid-column: 9 / 13; grid-row: 5 / 7; }
    
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-rows: repeat(6, 200px);
      }
      .gallery-item-1,
      .gallery-item-2,
      .gallery-item-3,
      .gallery-item-4,
      .gallery-item-5,
      .gallery-item-6 {
        grid-column: 1 / 13;
      }
      .gallery-item-1 { grid-row: 1 / 2; }
      .gallery-item-2 { grid-row: 2 / 3; }
      .gallery-item-3 { grid-row: 3 / 4; }
      .gallery-item-4 { grid-row: 4 / 5; }
      .gallery-item-5 { grid-row: 5 / 6; }
      .gallery-item-6 { grid-row: 6 / 7; }
    }
    
    .promo-badge {
      /* background: linear-gradient(135deg, #1cd167, #1cd167); */
      background: var(--primary-color);;
      color: white;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 10px 20px rgba(238, 90, 36, 0.3);
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .price-tag {
      background: linear-gradient(135deg, #8B4513, #D2691E);
      color: white;
      padding: 1rem 2rem;
      border-radius: 10px;
      position: relative;
      overflow: hidden;
    }
    
    .price-tag::before {
      content: 'PROMO';
      position: absolute;
      top: -10px;
      right: -30px;
      background: #ff6b6b;
      color: white;
      padding: 5px 40px;
      transform: rotate(45deg);
      font-size: 0.75rem;
      font-weight: 700;
    }
    
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 40px;
      right: 40px;
      background-color: #25d366;
      color: #FFF;
      border-radius: 50px;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }
    
    .whatsapp-float:hover {
      background-color: #128C7E;
      transform: scale(1.1);
    }
    
    .sticky-sidebar {
      position: sticky;
      top: 120px;
    }
    
    .benefit-card {
      background: linear-gradient(145deg, #ffffff, #f8f4e9);
      border-left: 5px solid #8B4513;
    }
    
    .unit-counter {
      background: linear-gradient(135deg, #8B4513, #A0522D);
      color: white;
      border-radius: 15px;
      padding: 1.5rem;
      text-align: center;
      box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
    }