/* Reset e estilos gerais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000000;
}

/* Header */
.header {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-login {
   position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.header-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 3;
  text-align: center;
}

.header h1 {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 3rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  color: white;
}
.header h2 {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 3rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  color: white;
}
.header p {
  text-align: center;
  margin: 2rem 0 1rem 0;
  font-size: 2rem;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
  color: white;
}

.header nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  z-index: 4;
}

nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
  position: relative;
}

 nav ul .login-item {
  position: absolute;
  right: 2rem;
}

nav li img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
  font-weight: 500;
}

 nav a:hover {
  background: rgba(255,255,255,0.2);
}

 nav .btn-login {
  background: #ff6b35;
  color: white;
  font-weight: bold;
  border: 2px solid #ff6b35;
}

 nav .btn-login:hover {
  background: #e55a2b;
  border-color: #e55a2b;
}

 nav a {
  color: white;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav a:hover {
  background: rgba(255,255,255,0.2);
}

 nav .btn-login {
  background: #c0902c;
  color: white;
  font-weight: bold;
  border: 2px solid #c0902c;
}

 nav .btn-login:hover {
  background: #fcad04;
  border-color: #fcad04;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #004080, #0066cc);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  margin-top: 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Botões */
.btn, .btn-sm {
  display: inline-block;
  background: #c0902c;
  color: white;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn:hover, .btn-sm:hover {
  background: #fcad04 ;
}

/* Sections */
section {
  /* max-width: max-content; */
  margin: 3rem auto;
  padding: 0 2rem;
  scroll-margin-top: 80px;
}

#imoveis {
  background: #23272f;
  color: #ffffff;
}

section h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
}

/* Animações de entrada */
.animate-element {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.animate-element.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Novo Layout SkyHaus Principal */
.main-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-subtitle {
  font-size: 3rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  color: #e74c3c;
  font-weight: 600;
  text-transform: uppercase;
}

.hero-title {
  font-size: 7rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-btn {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 3rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.hero-btn:hover {
  background: white;
  color: #000;
  transform: translateY(-2px);
}

/* Featured Villa Section */
.featured-villa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  
}

.villa-content {
  
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.villa-title {
  font-size: 3rem;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.villa-price {
  font-size: 1.2rem;
  color: #e74c3c;
  margin-bottom: 2rem;
  font-weight: 600;
}

.villa-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  display: inline-block;
}

.villa-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.villa-image {
  overflow: hidden;
}

.villa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.villa-image:hover img {
  transform: scale(1.05);
}

/* Highlights Section */
.highlights-section {
  padding: 6rem 2rem;
 
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.highlight-item {
  text-align: center;
}

.highlight-image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.highlight-image:hover img {
  transform: scale(1.1);
}

.highlight-content h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.highlight-content p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}

/* Amenities Section */
.amenities-section {
  padding: 6rem 2rem;
 /* background: #f8f8f8;*/
}

.amenities-section h2 {
  text-align: center;
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 4rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-item {
  background: #2d2d2d;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.amenity-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
}

.amenity-icon svg {
  width: 32px;
  height: 32px;
  color: #333;
  transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
  background: #333;
  border-color: #333;
  transform: scale(1.1);
}

.amenity-item:hover .amenity-icon svg {
  color: white;
}

.amenity-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.amenity-item p {
  color: #ccc;
  line-height: 1.6;
}
.property-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
  min-height: 80vh;
  padding: 4rem 0;
}

.property-hero-content {
  padding: 2rem;
}

.property-badge {
  background: #e74c3c;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.property-hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.property-hero-content .location {
  font-size: 1.5rem;
  color: #e74c3c;
  font-weight: normal;
  text-transform: none;
}

.property-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.schedule-btn {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.property-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.property-hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(231, 76, 60, 0.9);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: rgba(231, 76, 60, 1);
  transform: scale(1.1);
}

/* Floor Plans Section */
.floor-plans-section {
  margin-bottom: 6rem;
}

.floor-plans-section h2 {
  font-size: 2.5rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: bold;
}

.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.floor-plan-item {
  background: rgba(20, 20, 20, 0.9);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.floor-plan-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.floor-image {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 1.2rem;
}

.floor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-info h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.floor-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.floor-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.floor-spec:last-child {
  border-bottom: none;
}

.floor-spec .spec-label {
  color: #999999;
  font-size: 0.9rem;
}

.floor-spec .spec-value {
  color: #ffffff;
  font-weight: bold;
}

.download-btn {
  background: transparent;
  color: #e74c3c;
  border: 1px solid #e74c3c;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
}

.download-btn:hover {
  background: #e74c3c;
  color: white;
}

/* Layout antigo - manter para compatibilidade */
.imoveis-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
  min-height: 70vh;
}

.imoveis-hero-content {
  padding: 2rem;
}

.imoveis-hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.imoveis-hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.imoveis-hero-content {
  padding: 2rem;
}

.imoveis-hero-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.imoveis-hero-content.animate-element {
  transition-delay: 0.2s;
}

.imoveis-hero-image.animate-element {
  transition-delay: 0.4s;
}

.imoveis-hero-content h2 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.imoveis-hero-content p {
  font-size: 1.2rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.property-specs {
  margin-bottom: 3rem;
}

.spec-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.spec-item.total-area {
  max-width: 50%;
}

.spec-icon {
  font-size: 1.8rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.spec-info {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.9rem;
  color: #999999;
  margin-bottom: 2px;
}

.spec-value {
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}

.property-documents {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.document-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.document-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.document-icon {
  font-size: 1.5rem;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(231, 76, 60, 0.2);
  border-radius: 6px;
}

.document-info {
  display: flex;
  flex-direction: column;
}

.document-title {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2px;
}

.document-subtitle {
  font-size: 0.8rem;
  color: #999999;
}

.learn-more-btn {
  background: #e74c3c;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.learn-more-btn:hover {
  background: #c0392b;
  transform: translateX(5px);
}

.btn-icon {
  font-size: 1.2rem;
  font-weight: bold;
}

.property-features {
  background: rgba(128, 128, 128, 0.9);
  padding: 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.property-features h4 {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: bold;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-align: center;
  flex: 1;
}

.feature-icon {
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.feature-text {
  font-size: 1rem;
  font-weight: 500;
}

/* Galeria de Imagens */
.property-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  height: 200px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.8s ease-out;
}

.gallery-item.animate-element {
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Grid de Imóveis */
.imoveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.imovel-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  transition: transform 0.3s, opacity 0.8s ease-out;
  border: 1px solid #333;
}

.imovel-card:hover {
  transform: translateY(-5px);
}

.imovel-card.animate-element {
  transition-delay: calc(var(--delay, 0) * 0.1s);
}

.imovel-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #ddd;
}

.imovel-card h4, .imovel-card p {
  padding: 0 1rem;
}

.imovel-card h4 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem 0;
  color: #ffffff;
}

.imovel-card p {
  margin-bottom: 0.5rem;
  color: #cccccc;
}

.imovel-card strong {
  color: #ff6b35;
  font-size: 1.2rem;
}

.imovel-card .btn-sm {
  margin: 1rem;
}

/* Formulário de Simulação */
form {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(255,255,255,0.1);
  max-width: 500px;
  margin: 2rem auto;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  border: 1px solid #333;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #ffffff;
}

form input {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 2px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  background: #2a2a2a;
  color: #ffffff;
}

form input:focus {
  outline: none;
  border-color: #0066cc;
}

/* Resultado da Simulação */
.resultado {
  background: #1a4a1a;
  border: 2px solid #4caf50;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 2rem auto;
  max-width: 500px;
  text-align: center;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.resultado p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #66ff66;
}

/* Dashboard Styles */
.dashboard-main {
  background: #000000;
  min-height: 100vh;
  padding: 2rem 0;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.dashboard-header {
  text-align: center;
  margin-bottom: 4rem;
}

.dashboard-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.dashboard-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
}

.user-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.user-type-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.user-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(196, 30, 58, 0.2);
  border-color: rgba(196, 30, 58, 0.3);
}

.user-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c41e3a, #8b0000);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.user-type-card:hover::before {
  opacity: 1;
}

.card-icon {
  margin-bottom: 1.5rem;
  color: #c41e3a;
}

.user-type-card h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.user-type-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-features ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.card-features li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c41e3a;
  font-weight: bold;
}

.btn-access {
  display: inline-block;
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-access:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(196, 30, 58, 0.4);
}

.dashboard-stats {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-header {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-header h3 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #c41e3a;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-links {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-links h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 300;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: rgba(196, 30, 58, 0.1);
  border-color: rgba(196, 30, 58, 0.3);
  transform: translateX(5px);
}

.quick-link.logout {
  color: #ff6b6b;
}

.quick-link.logout:hover {
  background: rgba(255, 107, 107, 0.1);
  border-color: rgba(255, 107, 107, 0.3);
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .dashboard-container {
    padding: 0 1rem;
  }
  
  .dashboard-header h2 {
    font-size: 2rem;
  }
  
  .user-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Dashboard Navigation */
.dashboard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-back {
  color: #c41e3a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-back:hover {
  color: #ff4d6d;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-type {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.logout-btn {
  color: #ff6b6b;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #ff6b6b;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background: #ff6b6b;
  color: white;
}

/* Client Dashboard Styles */
.client-dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.main-actions h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.action-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.action-icon {
  color: #c41e3a;
  margin-bottom: 1rem;
}

.action-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.action-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.action-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.client-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-card, .notifications-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.profile-avatar {
  text-align: center;
  color: #c41e3a;
  margin-bottom: 1rem;
}

.profile-card h3 {
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
}

.profile-card p {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-bottom: 1rem;
}

.profile-stats {
  display: flex;
  justify-content: space-around;
  text-align: center;
}

.profile-stats .stat .number {
  display: block;
  color: #c41e3a;
  font-size: 1.5rem;
  font-weight: bold;
}

.profile-stats .stat .label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.notifications-card h3 {
  color: #fff;
  margin-bottom: 1rem;
}

.notification-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.notification-icon {
  font-size: 1.5rem;
}

.notification-content h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.notification-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
}

.notification-time {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
}

/* Active Proposals */
.active-proposals {
  margin-bottom: 3rem;
}

.active-proposals h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.proposals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.proposal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.proposal-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.proposal-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.proposal-content {
  padding: 1.5rem;
}

.proposal-content h3 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.proposal-price {
  color: #c41e3a;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.proposal-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.proposal-status.approved {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.proposal-details p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.proposal-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.proposal-btn:hover {
  transform: translateY(-2px);
}

/* Simulation History */
.simulation-history h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.history-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header, .table-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr 0.8fr;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.table-header {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.table-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  transition: background 0.3s ease;
}

.table-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
  border-bottom: none;
}

.table-action {
  background: rgba(196, 30, 58, 0.2);
  color: #c41e3a;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.table-action:hover {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

/* Corporate Dashboard Styles */
.kpi-section {
  margin-bottom: 3rem;
}

.kpi-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.kpi-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.kpi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.kpi-icon {
  font-size: 2rem;
}

.kpi-content h3 {
  color: #c41e3a;
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.kpi-content p {
  color: #fff;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.kpi-change {
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
}

.kpi-change.positive {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.corporate-dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.portfolio-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.portfolio-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.portfolio-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.tab-btn.active, .tab-btn:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  border-color: transparent;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.chart-container h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.chart-placeholder {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1.5rem;
}

.chart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.chart-label {
  color: rgba(255, 255, 255, 0.8);
  min-width: 80px;
  font-size: 0.9rem;
}

.chart-bar {
  height: 20px;
  background: linear-gradient(90deg, #c41e3a, #8b0000);
  border-radius: 10px;
  flex: 1;
}

.chart-value {
  color: #fff;
  font-weight: 500;
  min-width: 40px;
}

.properties-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.property-item {
  display: flex;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.property-item:hover {
  transform: translateX(5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.property-image img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.property-details {
  flex: 1;
}

.property-details h4 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.property-details p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.property-metrics {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
}

.property-metrics span {
  color: rgba(255, 255, 255, 0.6);
}

.property-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.property-btn {
  background: rgba(196, 30, 58, 0.2);
  color: #c41e3a;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.property-btn:hover {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

.performance-chart {
  display: flex;
  align-items: end;
  gap: 1rem;
  height: 200px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.performance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.performance-bar {
  width: 100%;
  background: linear-gradient(to top, #c41e3a, #ff4d6d);
  border-radius: 5px 5px 0 0;
  min-height: 20px;
  transition: all 0.3s ease;
}

.performance-item:hover .performance-bar {
  background: linear-gradient(to top, #8b0000, #c41e3a);
}

.performance-item .month {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.performance-item .value {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
}

.corporate-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tools-card, .alerts-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.tools-card h3, .alerts-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tool-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tool-icon {
  font-size: 1.5rem;
}

.tool-content h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.tool-link {
  color: #c41e3a;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.tool-link:hover {
  color: #ff4d6d;
}

.alert-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 5px;
}

.alert-item.high {
  background: rgba(220, 38, 38, 0.1);
  border-left: 3px solid #dc2626;
}

.alert-item.medium {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
}

.alert-content h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.alert-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Broker Dashboard Styles */
.broker-metrics {
  margin-bottom: 3rem;
}

.broker-metrics h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.metric-icon {
  font-size: 2rem;
}

.metric-content h3 {
  color: #c41e3a;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.metric-content p {
  color: #fff;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.metric-target {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.broker-dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sales-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  color: #fff;
  font-weight: 300;
}

.add-btn {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.pipeline-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stage {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 1rem;
  min-height: 300px;
}

.stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stage-header h4 {
  color: #fff;
  font-weight: 500;
}

.stage-count {
  background: #c41e3a;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
}

.lead-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.lead-card:hover {
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.3);
}

.lead-info h5 {
  color: #fff;
  margin-bottom: 0.25rem;
}

.lead-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.lead-value {
  color: #c41e3a;
  font-weight: bold;
  font-size: 0.9rem;
}

.lead-btn {
  background: rgba(196, 30, 58, 0.2);
  color: #c41e3a;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  width: 100%;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.lead-btn:hover {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

.broker-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calendar-card, .commission-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.calendar-card h3, .commission-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.calendar-event {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-event:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.event-time {
  color: #c41e3a;
  font-weight: bold;
  font-size: 0.9rem;
  min-width: 50px;
}

.event-content h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.event-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.commission-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
}

.commission-property h4 {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.commission-property p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.commission-value {
  color: #c41e3a;
  font-weight: bold;
  font-size: 1rem;
}

.commission-status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.commission-status.pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.commission-status.paid {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.recent-clients {
  margin-bottom: 3rem;
}

.recent-clients h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.clients-table {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-table .table-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.clients-table .table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  transition: background 0.3s ease;
}

.clients-table .table-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.status {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.status.hot {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
}

.status.warm {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.status.cold {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

/* Admin Dashboard Styles */
.admin-overview {
  margin-bottom: 3rem;
}

.admin-overview h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.overview-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.overview-icon {
  font-size: 2.5rem;
}

.overview-content h3 {
  color: #c41e3a;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.overview-content p {
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.overview-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.overview-breakdown span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.admin-main {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 2rem;
}

.admin-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-tab-btn {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.admin-tab-btn.active, .admin-tab-btn:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  border-color: transparent;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tab-header h3 {
  color: #fff;
  font-weight: 300;
}

.users-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.filter-select, .search-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 0.75rem;
  color: white;
  font-size: 0.9rem;
}

.search-input {
  flex: 1;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.admin-table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.admin-table .table-header {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr 1.5fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-table .table-row {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1fr 1fr 1fr 1.5fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  transition: background 0.3s ease;
}

.admin-table .table-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.user-type-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.user-type-badge.client {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
}

.user-type-badge.broker {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.user-type-badge.company {
  background: rgba(168, 85, 247, 0.2);
  color: #a855f7;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
}

.status-badge.active {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.status-badge.completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
}

.table-actions {
  display: flex;
  gap: 0.5rem;
}

.action-btn {
  background: rgba(196, 30, 58, 0.2);
  color: #c41e3a;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.action-btn:hover {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

.action-btn.edit {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.action-btn.edit:hover {
  background: rgba(59, 130, 246, 0.3);
  color: #fff;
}

.action-btn.delete {
  background: rgba(220, 38, 38, 0.2);
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
}

.action-btn.delete:hover {
  background: rgba(220, 38, 38, 0.3);
  color: #fff;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.admin-property-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admin-property-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.admin-property-card .property-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.admin-property-card .property-details {
  padding: 1rem;
}

.admin-property-card .property-details h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.admin-property-card .property-details p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.admin-property-card .property-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}

.admin-property-card .property-stats span {
  color: rgba(255, 255, 255, 0.6);
}

.admin-property-card .property-actions {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 1rem;
}

.transactions-table {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.transactions-table .table-header {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1.5fr 1fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.transactions-table .table-row {
  display: grid;
  grid-template-columns: 0.8fr 1.5fr 1.5fr 1fr 1fr 1fr 0.8fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  transition: background 0.3s ease;
}

.transactions-table .table-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.report-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.report-card:hover {
  transform: translateY(-5px);
  border-color: rgba(196, 30, 58, 0.3);
}

.report-card h4 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.report-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.report-btn {
  background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.report-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
}

.settings-sections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.settings-section {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.settings-section h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.setting-item {
  margin-bottom: 1rem;
}

.setting-item label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.setting-item input[type="text"],
.setting-item input[type="number"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 0.75rem;
  color: white;
  font-size: 0.9rem;
}

.setting-item input[type="checkbox"] {
  margin-right: 0.5rem;
}

.admin-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quick-actions-card, .system-health-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
}

.quick-actions-card h3, .system-health-card h3 {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
}

.quick-action-btn {
  display: block;
  width: 100%;
  background: rgba(196, 30, 58, 0.2);
  color: #c41e3a;
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 0.75rem;
  border-radius: 5px;
  cursor: pointer;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.quick-action-btn:hover {
  background: rgba(196, 30, 58, 0.3);
  color: #fff;
}

.health-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.health-metric span:first-child {
  color: rgba(255, 255, 255, 0.8);
  min-width: 60px;
  font-size: 0.9rem;
}

.health-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.health-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #c41e3a);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.health-metric span:last-child {
  color: rgba(255, 255, 255, 0.8);
  min-width: 40px;
  font-size: 0.9rem;
  text-align: right;
}

.export-btn {
  background: rgba(59, 130, 246, 0.2);
  color: #3b82f6;
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.export-btn:hover {
  background: rgba(59, 130, 246, 0.3);
  color: #fff;
}

/* Responsive adjustments for dashboards */
@media (max-width: 768px) {
  .client-dashboard-grid,
  .corporate-dashboard-grid,
  .broker-dashboard-grid,
  .admin-dashboard-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-grid,
  .kpi-grid,
  .metrics-grid,
  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pipeline-stages {
    grid-template-columns: 1fr;
  }
  
  .admin-tabs {
    flex-direction: column;
  }
  
  .admin-tab-btn {
    text-align: center;
  }
  
  .admin-table .table-header,
  .admin-table .table-row,
  .clients-table .table-header,
  .clients-table .table-row,
  .transactions-table .table-header,
  .transactions-table .table-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .table-actions {
    justify-content: center;
  }
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 4rem 0 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid #333;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.footer-section.newsletter {
  grid-column: 1;
}

.newsletter-form {
  display: flex;
  margin: 1.5rem 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #444;
  border-radius: 5px 0 0 5px;
  background: #2d2d2d;
  color: white;
  border-right: none;
}

.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #fcad04 0%, #fce304 100%);
  color: white;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #fce304 0%, #fcad04 100%);
}

.footer-logo {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 1rem;
}

.contact-item p {
  margin-bottom: 0.5rem;
}

.hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
}

.hours p:first-child {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-section h4::before {
  content: '';
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-section.address h4::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z"/></svg>');
}

.footer-section.hours h4::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67V7z"/></svg>');
}

.footer-section.contact h4::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z"/></svg>');
}

.footer-section.services h4::before {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="white" viewBox="0 0 24 24"><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg>');
}

.footer-section.logo img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-section p, .footer-section ul {
  line-height: 1.8;
  color: #f5f5f5;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #c41e3a;
}

.footer-contact-info {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem 0;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s;
}

.footer-social a:hover {
  background: rgba(255,255,255,0.4);
}

.footer-bottom {
  background: #0d0d0d;
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid #333;
}

.footer-bottom p {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}

/* Responsivo Footer */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section.newsletter {
    grid-column: 1;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 5px;
    border-right: 1px solid #444;
    margin-bottom: 1rem;
  }
  
  .newsletter-form button {
    border-radius: 5px;
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .header {
    height: 100vh;
  }
  
  .header nav ul {
    flex-direction: row;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .header nav ul .login-item {
    position: static;
    order: 1;
  }
  
  .header h1 {
    font-size: 2rem;
    margin: 1rem;
  }
  
  .header nav {
    padding: 0.5rem 0;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .imoveis-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
  }
  
  .imoveis-hero-content h2 {
    font-size: 2.5rem;
  }
  
  .property-features {
    position: static;
    margin-top: 1rem;
  }
  
  .property-gallery {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  
  .gallery-item {
    height: 120px;
  }
  
  .imoveis-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  section {
    padding: 0 1rem;
  }
}

/* Página de Simulação */
.header-small {
  background: #111;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.simulacao-page {
  min-height: 100vh;
  padding: 2rem 0;
}

.simulacao-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.simulacao-header {
  text-align: center;
  margin-bottom: 3rem;
}

.simulacao-header h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: bold;
}

.simulacao-header p {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 600px;
  margin: 0 auto;
}

.simulacao-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.form-card, .resultado-card {
  background: rgba(20, 20, 20, 0.9);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-card h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-group {

  margin-bottom: 1.5rem;
}
.form-group-type {
 background: transparent; 
 border: none; 
 color: #c2910a;font-weight:600; 
 cursor:pointer;
 
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.input-wrapper {
  position: relative;
  display: flex;
      flex-direction: row;
      align-items: flex-start;
}

.currency {
  background: #333;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px 0 0 8px;
  border: 1px solid #555;
  border-right: none;
}

.simulacao-form input, .simulacao-form select {
  width: 100%;
  padding: 0.98rem 1rem;
  background: #222;
  border: 1px solid #555;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.input-wrapper input {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

.simulacao-form input:focus, .simulacao-form select:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.btn-simular {
  width: 100%;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-simular:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.resultado-card.success {
  background: rgba(20, 40, 20, 0.9);
  border-color: rgba(76, 175, 80, 0.3);
}

.resultado-card.placeholder {
  background: rgba(40, 40, 40, 0.9);
  text-align: center;
  padding: 3rem 2rem;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.resultado-card h3 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.resultado-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.resultado-item.destacado {
  background: rgba(231, 76, 60, 0.1);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(231, 76, 60, 0.3);
  margin: 1rem 0;
}

.resultado-item .label {
  color: #cccccc;
  font-weight: 500;
}

.resultado-item .value {
  color: #ffffff;
  font-weight: bold;
}

.resultado-item.destacado .value {
  color: #e74c3c;
  font-size: 1.2rem;
}

.acoes-resultado {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-principal, .btn-secundario {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-principal {
  background: #e74c3c;
  color: white;
  border: none;
}

.btn-secundario {
  background: transparent;
  color: #ffffff;
  border: 1px solid #555;
}

.btn-principal:hover, .btn-secundario:hover {
  transform: translateY(-2px);
}

.info-adicional {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: rgba(20, 20, 20, 0.9);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Responsividade da página de simulação */
@media (max-width: 768px) {
  .simulacao-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-adicional {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .simulacao-header h1 {
    font-size: 2rem;
  }
  
  .acoes-resultado {
    flex-direction: column;
  }
  
  /* Responsividade do novo layout SkyHaus */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .featured-villa {
    grid-template-columns: 1fr;
  }
  
  .villa-content {
    padding: 2rem;
    text-align: center;
  }
  
  .villa-title {
    font-size: 2rem;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .amenities-section h2 {
    font-size: 2rem;
  }
  
  .amenities-section,
  .highlights-section {
    padding: 3rem 1rem;
  }
  
  /* Layout antigo responsivo */
  .property-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
    min-height: auto;
  }
  
  .property-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .property-hero-image img {
    height: 400px;
  }
  
  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .floor-plan-item {
    padding: 1.5rem;
  }
  
  .floor-specs {
    grid-template-columns: 1fr;
  }
  
  .floor-plans-section h2 {
    font-size: 2rem;
  }
  
  .spec-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .spec-item.total-area {
    max-width: 100%;
  }
  
  .property-documents {
    flex-direction: column;
    gap: 1rem;
  }
  
  .imoveis-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .imoveis-hero-content h2 {
    font-size: 2.5rem;
  }
}
