/* You can add global styles to this file, and also import other style files */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* Reset and global configurations */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

/* Tipography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #e0e0e0;
}

/* Navigation */
.navbar {
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(15px);
}

.navbar-brand img {
  max-width: 200px;
  transition: all 0.3s ease;
}

.social-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
}

.whatsapp-btn:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Hero Section */
#home-banner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: #000;
  overflow: hidden;
}

#home-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

#home-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

#home-banner .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-banner-empreendimento {
  position: relative;
  height: 20vh;
  min-height: 500px;
  background-color: #000;
  overflow: hidden;
}

#home-banner-empreendimento img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

#home-banner-empreendimento .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 2;
}

#home-banner-empreendimento .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h5 {
  font-size: 1.5rem;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  color: #000;
  text-decoration: none;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Sections */
.section {
  padding: 120px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title .subtitle {
  font-size: 1.2rem;
  color: #888;
  font-weight: 400;
}

/* Video Section */
.video-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.video-container iframe {
  border-radius: 20px;
}

/* Empreendimentos */
.empreendimentos-section {
  background: #0a0a0a;
}

.empreendimento-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.empreendimento-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
  border-color: rgba(212, 175, 55, 0.3);
}

.empreendimento-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.empreendimento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.empreendimento-card:hover .empreendimento-image img {
  transform: scale(1.05);
}

.empreendimento-content {
  padding: 2rem;
}

.empreendimento-content h5 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #d4af37;
}

.empreendimento-content .location {
  color: #888;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.empreendimento-content ul {
  list-style: none;
  padding: 0;
}

.empreendimento-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.empreendimento-content li:last-child {
  border-bottom: none;
}

.empreendimento-content li::before {
  content: '✓';
  color: #d4af37;
  font-weight: bold;
  font-size: 1.2rem;
}

/* Empreendimento Info */
.empreendimento-info {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.empreendimento-info h4 {
  color: #d4af37;
  margin-bottom: 1rem;
}

.empreendimento-info p {
  margin-bottom: 2rem;
  color: #e0e0e0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 0.9rem;
  color: #e0e0e0;
  font-weight: 500;
}

/* Sobre a empresa */
.sobre-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.sobre-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.sobre-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sobre-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 2rem;
}

/* Investimento */
.investimento-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
}

.investimento-content {
  max-width: 600px;
  margin: 0 auto;
}

.investimento-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.investimento-content strong {
  color: #d4af37;
  font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  text-align: center;
  padding: 80px 0;
}

.cta-section h5 {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.cta-section .btn-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid #000;
}

.cta-section .btn-cta:hover {
  background: transparent;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background: #000;
  padding: 60px 0 40px;
  text-align: center;
}

footer img {
  max-width: 180px;
  margin-bottom: 2rem;
}

footer p {
  color: #888;
  margin-bottom: 1.5rem;
}

footer .social-links {
  justify-content: center;
  margin-top: 1rem;
}

/* Animações */
@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);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content h5 {
    font-size: 1.2rem;
  }
  
  .navbar-brand img {
    max-width: 150px;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
  }
  
  .empreendimento-card {
    margin-bottom: 2rem;
  }
  
  .empreendimento-content {
    padding: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .empreendimento-info {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .cta-button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .section-title h3 {
    font-size: 1.8rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Hover effects */
.hover-lift {
  transition: transform 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #b8941f;
}

/* ========================================
   ESTILOS DO FORMULÁRIO
   ======================================== */

.form-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.form-control {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  color: #ffffff;
  padding: 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: #d4af37;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
  color: #ffffff;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.5);
}

.form-label {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border: none;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #000;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
  color: #000;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.success-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #d4af37;
  margin-bottom: 2rem;
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.error-message {
  color: #ff6b6b;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}

.form-floating {
  position: relative;
}

.form-floating .form-control {
  height: 60px;
}

.form-floating label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity .1s ease-in-out,transform .1s ease-in-out;
  color: rgba(255,255,255,0.7);
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  opacity: .65;
  transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.empreendimento-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: none;
  z-index: 10;
}

.empreendimento-card {
  position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}

.empreendimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.empreendimento-image {
  position: relative;
  overflow: hidden;
}

.empreendimento-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.empreendimento-content {
  padding: 1.5rem;
}

.empreendimento-content h5 {
  color: #d4af37;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.empreendimento-content .location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #e0e0e0;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.empreendimento-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.empreendimento-content li {
  padding: 0.3rem 0;
  color: #e0e0e0;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.empreendimento-content li:last-child {
  margin-bottom: 0;
}

.empreendimento-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Responsividade do formulário */
@media (max-width: 768px) {
  .form-container {
    padding: 2rem;
  }
  
  .success-container {
    padding: 2rem;
  }
  
  .btn-submit {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .form-container {
    padding: 1.5rem;
  }
  
  .success-container {
    padding: 1.5rem;
  }
  
  .empreendimento-content {
    padding: 1rem;
  }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  animation: pulse 2s infinite;
}

.floating-btn {
  display: flex;
  align-items: center;
  background: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-btn:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.floating-btn i {
  font-size: 24px;
  margin-right: 8px;
}

.floating-text {
  font-weight: 600;
  font-size: 14px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Enhanced Hero Section */
.hero-badge {
  margin-bottom: 20px;
}

.hero-badge .badge {
  font-size: 14px;
  padding: 10px 20px;
  font-weight: 600;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.7; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.highlight-item i {
  margin-right: 8px;
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-hero-primary:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.urgency-content {
  display: flex;
  align-items: center;
}

.urgency-icon {
  font-size: 2rem;
  margin-right: 15px;
  animation: pulse 2s infinite;
}

.urgency-text h4 {
  margin: 0;
  font-weight: 700;
  font-size: 1.3rem;
}

.urgency-text p {
  margin: 5px 0 0 0;
  opacity: 0.9;
}

.btn-urgency {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-urgency:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Enhanced Empreendimento Card */
.empreendimento-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.image-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
}

.status-badge {
  background: #28a745;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.price-info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.price-label {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 5px;
}

.price-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.spec-item {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

.spec-item i {
  color: #667eea;
  margin-right: 8px;
  font-size: 16px;
}

.features-list {
  margin: 25px 0;
}

.features-list h6 {
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.features-list li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 16px;
}

.cta-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.cta-button.primary {
  background: #25d366;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.cta-button.primary:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #667eea;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #667eea;
  flex: 1;
  text-align: center;
  min-width: 200px;
}

.cta-button.secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

/* Benefits Section */
.benefits-section {
  margin-top: 30px;
}

.benefits-section h5 {
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateY(-2px);
}

.benefit-item i {
  color: #667eea;
  font-size: 24px;
  margin-right: 15px;
  margin-top: 2px;
}

.benefit-item h6 {
  margin: 0 0 5px 0;
  color: #333;
  font-weight: 600;
}

.benefit-item p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

/* Social Proof Section */
.social-proof-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 20px;
}

.testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-info h6 {
  margin: 0;
  color: #333;
  font-weight: 600;
}

.author-info span {
  color: #666;
  font-size: 14px;
}

.stars {
  color: #ffc107;
  font-size: 16px;
}

/* Enhanced Tour Section */
.tour-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-tour {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-tour:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Enhanced CTA Section */
.cta-content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 50px;
  border-radius: 20px;
  color: white;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta.primary {
  background: #25d366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-cta.primary:hover {
  background: #128c7e;
  color: white;
  transform: translateY(-2px);
}

.btn-cta.secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-text {
    display: none;
  }
  
  .floating-btn {
    padding: 15px;
    border-radius: 50%;
  }
  
  .floating-btn i {
    margin-right: 0;
    font-size: 28px;
  }
  
  .hero-highlights {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  
  .urgency-content {
    flex-direction: column;
    text-align: center;
  }
  
  .urgency-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .hero-cta {
    flex-direction: column;
  }
}

/* Galeria de Fotos Moderna */
.gallery-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 0;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-color: #d4af37;
  color: #000;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.filter-btn i {
  font-size: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: white;
}

.gallery-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.gallery-caption {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-cta {
  margin-top: 40px;
}

.btn-gallery {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  color: #000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-gallery:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-image-container {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}

#lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
}

.lightbox-caption h4 {
  margin: 0 0 5px 0;
  font-size: 24px;
  font-weight: 600;
}

.lightbox-caption p {
  margin: 0;
  font-size: 16px;
  opacity: 0.8;
}

/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-filters {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-image {
    height: 200px;
  }
  
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  
  .lightbox-caption {
    bottom: -50px;
  }
  
  .lightbox-caption h4 {
    font-size: 20px;
  }
  
  .lightbox-caption p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .filter-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}

/* Projeto e Localização Section */
.projeto-localizacao-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.projeto-card,
.localizacao-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.projeto-card::before,
.localizacao-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projeto-card:hover::before,
.localizacao-card:hover::before {
  opacity: 1;
}

.projeto-card:hover,
.localizacao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.card-title h4 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.card-title p {
  color: #cccccc;
  margin: 0;
  font-size: 0.95rem;
}

/* Projeto Card */
.projeto-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.projeto-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projeto-card:hover .projeto-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.projeto-card:hover .image-overlay {
  opacity: 1;
}

.btn-expand {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  border: none;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-expand:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.projeto-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-item i {
  color: #d4af37;
  font-size: 1rem;
}

.detail-item span {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.btn-projeto {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-projeto:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

/* Localização Card */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.localizacao-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.info-item i {
  color: #d4af37;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.info-item h6 {
  color: #ffffff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.info-item p {
  color: #cccccc;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.btn-localizacao {
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  color: #000;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-localizacao:hover {
  background: linear-gradient(135deg, #f4d03f, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
  color: #000;
}

/* Modal do Projeto */
.modal-projeto {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-projeto.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #1a1a1a;
  border-radius: 20px;
  max-width: 90%;
  max-height: 90%;
  overflow: hidden;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal-projeto.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h4 {
  color: #ffffff;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-image {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.btn-modal {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .projeto-card,
  .localizacao-card {
    padding: 1.5rem;
  }

  .card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .projeto-details,
  .localizacao-info {
    grid-template-columns: 1fr;
  }

  .modal-content {
    max-width: 95%;
    max-height: 95%;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }

  .modal-image {
    max-height: 60vh;
  }
}

@media (max-width: 576px) {
  .projeto-card,
  .localizacao-card {
    padding: 1rem;
  }

  .card-title h4 {
    font-size: 1.3rem;
  }

  .projeto-image {
    height: 200px;
  }

  .btn-expand {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .detail-item,
  .info-item {
    padding: 0.5rem;
  }

  .detail-item span,
  .info-item p {
    font-size: 0.8rem;
  }
}
