@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.scroll-reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease-out;
}

.scroll-reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.header {
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(3, 21, 44, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header .header_container {
  transition: all 0.3s ease;
}

.logo_container img {
  transition: all 0.3s ease;
}

.logo_container img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.home_background {
  position: relative;
  overflow: hidden;
}

.home_background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(3, 21, 44, 0.1) 100%);
  pointer-events: none;
  animation: gradientShift 8s ease infinite;
  background-size: 200% 200%;
}

.barra_lateral {
  animation: slideInLeft 1s ease-out;
}

.barra_lateral img {
  transition: all 0.5s ease;
}

.barra_lateral:hover img {
  transform: scale(1.05) translateY(-5px);
  filter: brightness(1.2) contrast(1.15);
}

.lista-conteudos-home .item {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.lista-conteudos-home .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.6s ease;
}

.lista-conteudos-home .item:hover::before {
  left: 100%;
}

.lista-conteudos-home .item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(3, 21, 44, 0.15);
}

.lista-conteudos-home .product-des {
  transition: all 0.3s ease;
}

.lista-conteudos-home .item:hover .product-des {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.lista-conteudos-home .listagem h3 {
  transition: all 0.3s ease;
}

.lista-conteudos-home .item:hover h3 {
  color: #D4AF37 !important;
  transform: translateX(5px);
}

.estate_contact_send_btn,
.btn-theme,
.btn-whatsapp {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.estate_contact_send_btn::before,
.btn-theme::before,
.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.estate_contact_send_btn:hover::before,
.btn-theme:hover::before,
.btn-whatsapp:hover::before {
  width: 300px;
  height: 300px;
}

.estate_contact_send_btn:hover,
.btn-theme:hover,
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(3, 21, 44, 0.3);
}

.estate_input_field,
.estate_text_field {
  transition: all 0.3s ease;
  position: relative;
}

.estate_input_field:focus,
.estate_text_field:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
  animation: gradientShift 3s ease infinite;
}

.footer_social ul li a {
  transition: all 0.3s ease;
  position: relative;
}

.footer_social ul li a:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.contact_info_item {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact_info_item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  transition: left 0.6s ease;
}

.contact_info_item:hover::before {
  left: 100%;
}

.contact_info_item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(3, 21, 44, 0.1);
}

.contact_info_icon {
  transition: all 0.3s ease;
}

.contact_info_item:hover .contact_info_icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
}

.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  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 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@media (max-width: 768px) {
  .scroll-reveal,
  .scroll-reveal-left,
  .scroll-reveal-right {
    transition: all 0.6s ease-out;
  }
  
  .lista-conteudos-home .item:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .footer_social ul li a:hover {
    transform: translateY(-3px) rotate(3deg);
  }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.hero-imovel {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.7) 0%, rgba(3, 21, 44, 0.3) 100%);
}

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

.hero-logo img {
  height: 80px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.imovel-container {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  min-height: 100vh;
}

.imovel-header {
  text-align: center;
  margin-bottom: 80px;
}

.imovel-title h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #03152C;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.imovel-gallery {
  margin-bottom: 80px;
}

.gallery-main {
  margin-bottom: 30px;
}

.main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(3, 21, 44, 0.15);
  background: #ffffff;
}

.main-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item {
  position: relative;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 21, 44, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .image-overlay {
  opacity: 1;
}

.image-overlay i {
  font-size: 48px;
  color: #ffffff;
  transform: scale(0.8);
  transition: all 0.4s ease;
}

.gallery-item:hover .image-overlay i {
  transform: scale(1);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
}

.thumb-item {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(3, 21, 44, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.thumb-item:hover,
.thumb-item.active {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
  border: 2px solid #D4AF37;
}

.thumb-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: all 0.4s ease;
}

.imovel-price {
  margin: 20px 0 40px;
  display: flex;
  justify-content: flex-start;
}

.price-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(3, 21, 44, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(3, 21, 44, 0.12);
}

.price-amount {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1;
  color: #D4AF37;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
}

@media (max-width: 768px) {
  .imovel-price {
    margin: 16px 0 30px;
  }

  .price-wrapper {
    padding: 12px 16px;
  }
}

.imovel-quick-info {
  margin-bottom: 80px;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 21, 44, 0.08);
  position: relative;
  overflow: hidden;
}

.quick-info-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.02), rgba(212, 175, 55, 0.02));
  transition: all 0.4s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.05), rgba(212, 175, 55, 0.05));
  box-shadow: 0 10px 30px rgba(3, 21, 44, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #03152C, #1a2f4a);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D4AF37;
  font-size: 24px;
  box-shadow: 0 8px 20px rgba(3, 21, 44, 0.2);
}

.info-content {
  flex: 1;
}

.info-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #03152C;
  line-height: 1.2;
}

.info-label {
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.imovel-description {
  margin-bottom: 80px;
}

.description-content {
  background: #ffffff;
  padding: 60px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 21, 44, 0.08);
  position: relative;
  overflow: hidden;
}

.description-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.description-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #03152C;
  margin-bottom: 20px;
}

.description-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC);
  margin-bottom: 40px;
  border-radius: 2px;
}

.description-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  max-width: none;
}

.imovel-features {
  margin-bottom: 80px;
}

.features-header {
  text-align: center;
  margin-bottom: 50px;
}

.features-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #03152C;
  margin-bottom: 20px;
}

.features-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC);
  margin: 0 auto;
  border-radius: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 21, 44, 0.08);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.02), rgba(212, 175, 55, 0.02));
  transition: all 0.4s ease;
}

.feature-item:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(3, 21, 44, 0.05), rgba(212, 175, 55, 0.05));
  box-shadow: 0 10px 30px rgba(3, 21, 44, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #D4AF37, #F4E4BC);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #03152C;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.feature-text {
  font-size: 16px;
  font-weight: 600;
  color: #03152C;
}

.imovel-location {
  margin-bottom: 80px;
}

.location-header {
  text-align: center;
  margin-bottom: 50px;
}

.location-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #03152C;
  margin-bottom: 20px;
}

.location-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC);
  margin: 0 auto;
  border-radius: 2px;
}

.location-map {
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(3, 21, 44, 0.08);
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.imovel-cta {
  background: linear-gradient(135deg, #03152C, #1a2f4a);
  border-radius: 24px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(3, 21, 44, 0.2);
}

.logo-cta {
  margin-bottom: 1.5rem;
}

.imovel-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D4AF37, #F4E4BC, #D4AF37);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

.cta-content h3 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.contact-buttons .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.contact-buttons .btn:hover::before {
  width: 100%;
  height: 100%;
}

.contact-buttons .btn-primary {
  background: linear-gradient(135deg, #D4AF37, #F4E4BC);
  color: #03152C;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-buttons .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  color: #03152C;
}

.contact-buttons .btn-info {
  background: linear-gradient(135deg, #03152C, #1a2f4a);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(3, 21, 44, 0.3);
}

.contact-buttons .btn-info:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(3, 21, 44, 0.4);
  color: #ffffff;
}

.contact-buttons .btn i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.contact-buttons .btn:hover i {
  transform: scale(1.2);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.share-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  margin-right: 10px;
}

.share-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.share-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.share-btn:hover::before {
  width: 100%;
  height: 100%;
}

.share-btn:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-share:hover {
  background: linear-gradient(135deg, #03152C, #1a2f4a);
  color: #D4AF37;
  box-shadow: 0 8px 25px rgba(3, 21, 44, 0.4);
}

.copy-btn:hover {
  background: #D4AF37;
  color: #03152C;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.addtoany-btn {
  position: relative;
}

.addtoany-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #D4AF37, #03152C, #D4AF37);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s ease;
}

.addtoany-btn:hover::after {
  opacity: 1;
  animation: rotate 2s linear infinite;
}

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

.hidden-gallery {
  display: none;
}

@media (max-width: 768px) {
  .hero-imovel { height: 40vh; }

  .imovel-container { padding: 30px 0 50px; }

  .imovel-header { margin-bottom: 30px; }
  .imovel-title h1 { font-size: 1.6rem; letter-spacing: -0.5px; }

  .listing_slider_container { margin-top: 0; }
  .main-image img { height: 240px; }
  .gallery-thumbs { grid-template-columns: repeat(auto-fill, minmax(70px, 1fr)); gap: 10px; }
  .thumb-item img { height: 70px; }

  .imovel-price { margin: 14px 0 24px; }
  .price-wrapper { padding: 10px 16px; }
  .price-amount { font-size: 1.3rem; }

  .imovel-quick-info { margin-bottom: 40px; }
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 20px 14px;
    border-radius: 16px;
  }
  .info-item { gap: 10px; padding: 12px 10px; border-radius: 12px; }
  .info-icon { width: 40px; height: 40px; min-width: 40px; font-size: 16px; border-radius: 10px; }
  .info-value { font-size: 16px; }
  .info-label { font-size: 11px; letter-spacing: 0.5px; }

  .imovel-description { margin-bottom: 40px; }
  .description-content { padding: 28px 18px; border-radius: 16px; }
  .description-content h2 { font-size: 22px; }
  .description-text { font-size: 15px; line-height: 1.7; }
  .description-line { margin-bottom: 20px; }

  .imovel-features { margin-bottom: 40px; }
  .features-header { margin-bottom: 24px; }
  .features-header h2 { font-size: 22px; }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px 14px;
    border-radius: 16px;
  }
  .feature-item { gap: 10px; padding: 12px 10px; border-radius: 10px; }
  .feature-icon { width: 36px; height: 36px; min-width: 36px; font-size: 15px; border-radius: 8px; }
  .feature-text { font-size: 13px; }

  .imovel-location { margin-bottom: 40px; }
  .location-header h2 { font-size: 22px; }
  .location-map { padding: 16px; border-radius: 16px; }
  .map-container { height: 280px; }

  .imovel-cta { padding: 40px 18px; border-radius: 16px; }
  .cta-content h3 { font-size: 22px; }
  .cta-content p { font-size: 15px; margin-bottom: 28px; }
  .cta-buttons { gap: 20px; }
  .contact-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .contact-buttons .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 15px; }
  .share-buttons { width: 100%; justify-content: center; padding: 12px 20px; gap: 14px; flex-wrap: wrap; }

  .modal-dialog { margin: 10px; }
  .modal-body .form-group { padding-left: 0 !important; padding-right: 0 !important; }
}

@media (max-width: 420px) {
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 10px; gap: 8px; }
  .info-item { gap: 6px; padding: 10px 8px; border-radius: 10px; }
  .info-icon { width: 32px; height: 32px; min-width: 32px; font-size: 13px; border-radius: 8px; }
  .info-value { font-size: 14px; }
  .info-label { font-size: 10px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 10px; gap: 8px; }
  .feature-item { gap: 6px; padding: 10px 8px; border-radius: 8px; }
  .feature-icon { width: 28px; height: 28px; min-width: 28px; font-size: 12px; border-radius: 6px; }
  .feature-text { font-size: 11px; }

  .imovel-title h1 { font-size: 1.35rem; }
  .imovel-cta { padding: 32px 14px; }
}
