/* ========================================
   STYLE.CSS - COMPLETO COM NOVO LAYOUT
   Floor Plans: Imagem ESQUERDA | Info DIREITA
   ======================================== */

:root {
  --primary: #A0826D;
  --secondary: #B5A589;
  --accent: #FF9500;
  --dark: #1a1a1a;
  --light: #FAF8F3;
  --white: #fff;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  line-height: 1.6;
  color: var(--dark);
  background: var(--light);
  width: 100vw;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  overflow: hidden;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: var(--dark);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-contact-link,
.nav-apply-link {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.nav-contact-link:hover {
  color: var(--primary);
}

.nav-apply-link {
  background: var(--accent);
  color: var(--white);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  transition: var(--transition);
}

.nav-apply-link:hover {
  background: #FF8C00;
  transform: translateY(-2px);
}


/* =====================================
   MENU CHECKBOX - PURO CSS (SEM JS!)
   ===================================== */

/* Esconde o checkbox */
.menu-checkbox {
  display: none;
}

/* Menu toggle agora é LABEL */
.menu-toggle {
  display: none;
  background: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

@media (max-width: 768px) {

  /* Mostra o toggle (label) */
  .menu-toggle {
    display: block;
    font-size: 1.3rem;
  }

  .logo {
    font-size: 1rem;
    gap: 0.3rem;
  }

  .nav-container {
    padding: 0.8rem 1rem;
  }

  /* Menu começa fechado */
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 999;
    display: flex;
    padding: 0;
  }

  /* Quando checkbox está checked, menu abre */
  #menu-checkbox:checked~.nav-menu {
    max-height: 600px !important;
    opacity: 1 !important;
    padding: 2rem !important;
    overflow: visible !important;
  }

  /* JS fallback: when `.open` is added via JS, force open state */
  .nav-menu.open {
    max-height: 600px !important;
    opacity: 1 !important;
    padding: 2rem !important;
    overflow: visible !important;
  }

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-contact-link {
    display: none;
  }

  .nav-apply-link {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0.7rem 0.8rem;
  }

  .logo {
    font-size: 0.9rem;
    gap: 0.25rem;
  }

  .menu-toggle {
    font-size: 1.2rem;
  }

  .nav-apply-link {
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }
}

/* =====================================
   CAROUSEL COM CSS ANIMATION
   ===================================== */

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
  /* removido gap entre topo e banner */
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: carousel 15s infinite;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

/* 3 slides, cada um com 5s de exibição */
.slide-1 {
  animation-delay: 0s;
}

.slide-2 {
  animation-delay: 5s;
}

.slide-3 {
  animation-delay: 10s;
}

@keyframes carousel {
  0% {
    opacity: 0;
  }

  3% {
    opacity: 1;
  }

  33% {
    opacity: 1;
  }

  36% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Carousel */
@media (max-width: 768px) {
  .hero-carousel {
    height: 80vh;
    min-height: 500px;
    margin-top: 60px;
  }

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

  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-carousel {
    height: 70vh;
    min-height: 450px;
  }

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

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


/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  max-width: 800px;
  width: 90%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

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

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.3);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  backdrop-filter: blur(5px);
}

.carousel-control:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 2rem;
}

.carousel-control.next {
  right: 2rem;
}

.carousel-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.indicator.active,
.indicator:hover {
  background: var(--white);
  transform: scale(1.2);
}

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

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

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-control.prev {
    left: 0.5rem;
  }

  .carousel-control.next {
    right: 0.5rem;
  }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(255, 149, 0, 0.3);
}

.btn-primary:hover {
  background: #FF8C00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 149, 0, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

/* CONTAINER & SECTIONS */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
  width: 100%;
}

section {
  padding: 5rem 0;
}

section:not(.hero-carousel) {
  padding-top: calc(5rem + 70px);
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

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

  section {
    padding: 3rem 0;
  }

  section:not(.hero-carousel) {
    padding-top: calc(3rem + 70px);
  }

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

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1.1rem;
  }
}

/* FEATURES SECTION */
.features {
  background: transparent;
}

.features-content {
  text-align: center;
}

.features-title {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  font-weight: 700;
}

.features-description {
  font-size: 1.3rem;
  line-height: 1.9;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
  color: var(--dark);
  font-weight: 500;
}

.location-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.highlight-item {
  background: linear-gradient(135deg, rgba(160, 130, 109, 0.1), rgba(181, 165, 137, 0.1));
  padding: 2rem;
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.highlight-item:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(160, 130, 109, 0.15), rgba(181, 165, 137, 0.15));
}

.highlight-item i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.highlight-item h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.highlight-item p {
  color: var(--gray);
  font-size: 1rem;
}

/* OLD FEATURES (kept for backup) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--gray);
}

/* ABOUT SECTION */
.about-content {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-map-container {
  width: 100%;
  position: relative;
  margin: 2rem 0;
  box-sizing: border-box;
}

.about-map {
  width: 100%;
  padding: 0 2rem;
  box-sizing: border-box;
}

.about-map iframe {
  width: 100%;
  max-width: 100%;
}

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

.stat-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .about-content {
    text-align: center;
  }

  .about-map-container {
    margin: 2rem 0;
  }

  .about-map {
    padding: 0 1rem;
  }
}

/* CONTACT SECTION */
.contact {
  background: transparent;
}

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

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  flex-wrap: wrap;
}

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

.contact-card i {
  font-size: 2rem;
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.3rem;
}

.contact-card div {
  flex: 1;
  min-width: 200px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-card h4 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.contact-card p {
  color: var(--gray);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}

/* SCHEDULE TOUR PAGE */
.schedule-tour-page {
  padding: 4rem 0;
}

.tour-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.tour-info-side h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.tour-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-content p {
  color: var(--gray);
  font-size: 0.95rem;
}

.tour-form-container {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.tour-form-container h2 {
  color: var(--primary);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.tour-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(160, 130, 109, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin-bottom: 2rem;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: normal;
  cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--secondary);
}

.form-note {
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .tour-content {
    grid-template-columns: 1fr;
  }

  .tour-form-container {
    padding: 2rem 1.5rem;
  }

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

/* WHY VISIT SECTION */
.why-visit-section {
  background: transparent;
  padding: 4rem 0;
}

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

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.benefit-card i {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* AMENITIES PAGE */
.amenities-page {
  padding: 4rem 0;
}

.amenities-category {
  margin-bottom: 5rem;
}

.category-title {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-title i {
  font-size: 2.5rem;
  color: var(--accent);
}

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

.amenity-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

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

.amenity-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
}

.amenity-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.amenity-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ========================================
   FLOOR PLANS PAGE - NOVO LAYOUT LADO A LADO
   ======================================== */

.floorplans-page {
  padding: 4rem 0;
}

.floorplan-card {
  background: #fff;
  border-radius: 15px;
  padding: 0;
  margin: 2rem 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 315px 1fr;
  gap: 0;
  align-items: stretch;
}

.floorplan-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.floorplan-card.featured {
  border: 3px solid var(--accent);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 10;
}

/* IMAGEM - ESQUERDA */
.floorplan-image-wrapper {
  width: 315px;
  height: 100%;
  aspect-ratio: 315 / 369;
  border-radius: 15px 0 0 15px;
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floorplan-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition);
  background: #fff;
  padding: 1rem;
}

.floorplan-card:hover .floorplan-image {
  transform: scale(1.03);
}

/* CONTEÚDO - DIREITA */
.floorplan-content-wrapper {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.floorplan-card h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  margin-top: 0;
}

.floorplan-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--light-gray);
  border-radius: 8px;
}

.detail-item i {
  font-size: 1.3rem;
  color: var(--secondary);
}

.detail-item span {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.95rem;
}

.floorplan-features {
  margin-bottom: 1.5rem;
  padding: 0;
}

.floorplan-features h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.floorplan-features ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.floorplan-features li {
  padding: 0.5rem 0;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.floorplan-features li i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.floorplan-actions {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.floorplan-actions .btn {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 0.9rem 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .floorplan-card {
    grid-template-columns: 280px 1fr;
  }

  .floorplan-image-wrapper {
    width: 280px;
  }

  .floorplan-content-wrapper {
    padding: 1.5rem;
  }

  .floorplan-card h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
}

@media (max-width: 768px) {
  .floorplan-card {
    grid-template-columns: 1fr;
  }

  .floorplan-image-wrapper {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }

  .floorplan-content-wrapper {
    padding: 1.5rem;
  }

  .floorplan-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .floorplan-details {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.8rem;
    margin-bottom: 1rem;
  }

  .floorplan-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .floorplan-actions .btn {
    width: 100%;
    min-width: unset;
    padding: 1rem 2rem;
    font-size: 0.9rem;
  }
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-section p {
    font-size: 1rem;
  }
}

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
}

.footer-section p i,
.footer-section i,
.footer-bottom i {
  font-size: 1rem;
  /* controla o tamanho dos ícones no rodapé */
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--accent);
}

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

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

.footer-section ul li a {
  opacity: 0.8;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 149, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--accent);
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
}

.footer-logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: #2a2a2a;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
  max-height: 50px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  color: var(--white);
  border-top: 1px solid rgba(255, 149, 0, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom strong {
  color: var(--accent);
  font-weight: 600;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #FF8C00;
  transform: translateY(-5px);
}

@media (max-width: 480px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .container {
    padding: 0 1rem;
  }
}

/* ELIGIBILITY PAGE */
.eligibility-images-section {
  padding: 4rem 0;
  background: transparent;
}

.eligibility-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* ✅ CARDS COM TABELAS - EMPILHADOS VERTICALMENTE */
.eligibility-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.eligibility-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.eligibility-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* TABELAS DENTRO DOS CARDS */
.table-wrapper {
  overflow-x: auto;
}

.eligibility-data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.eligibility-data-table thead {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.eligibility-data-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}

.eligibility-data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark);
  font-size: 0.95rem;
}

.eligibility-data-table tbody tr:hover {
  background: rgba(160, 130, 109, 0.1);
}

.eligibility-section {
  padding: 4rem 0;
}

.eligibility-content {
  max-width: 1000px;
  margin: 0 auto;
}

.eligibility-note {
  background: #FFF8E7;
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 3rem;
}

.eligibility-note p {
  color: var(--dark);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.eligibility-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
  border-radius: 10px;
}

.eligibility-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.eligibility-table thead {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.eligibility-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1.05rem;
}

.eligibility-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark);
}

.eligibility-table tbody tr:hover {
  background: rgba(160, 130, 109, 0.1);
}

.eligibility-info {
  background: transparent;
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 3rem;
}

.eligibility-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.eligibility-info p {
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.eligibility-contact {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent);
}

.eligibility-contact p {
  margin: 0.5rem 0;
  color: var(--dark);
}

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

.requirement-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.requirement-card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.requirement-card h4 {
  color: var(--primary);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.requirement-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* APPLICATION FORM SECTION */
.application-form-section {
  padding: 4rem 0;
  background: transparent;
}

.application-form-section .section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.application-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.application-card {
  background: linear-gradient(135deg, rgba(160, 130, 109, 0.05), rgba(181, 165, 137, 0.05));
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 2px solid rgba(160, 130, 109, 0.1);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.application-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, rgba(160, 130, 109, 0.1), rgba(181, 165, 137, 0.1));
}

.application-card i {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.application-card h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.application-card p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.6;
  flex-grow: 1;
}

.application-card .btn {
  align-self: center;
}

.schedule-tour-link {
  background: transparent;
  padding: 4rem 0;
  text-align: center;
}

.schedule-tour-link h2 {
  margin-bottom: 0.5rem;
}

.schedule-tour-link p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

@media (max-width: 768px) {

  .eligibility-table th,
  .eligibility-table td {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .eligibility-info {
    padding: 1.5rem;
  }

  .requirement-cards {
    grid-template-columns: 1fr;
  }

  .eligibility-data-table th {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .eligibility-data-table td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }

  .eligibility-card {
    padding: 1.5rem;
  }

  .eligibility-card h3 {
    font-size: 1.3rem;
  }
}



/* =========================================
   NOVOS ESTILOS - LOCATION & CONTACT
   ========================================= */

/* Location Cards (3 cards) */
.section-title-main {
  text-align: center;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.location-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.location-icon i {
  font-size: 2.5rem;
  color: var(--white);
}

.location-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.location-card p {
  color: var(--gray);
  font-size: 1rem;
}

/* Contact Cards Grid (4 cards) */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card-new {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

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

.contact-icon i {
  font-size: 2rem;
  color: var(--white);
}

.contact-card-new h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.contact-card-new p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Logo clicável */
.logo {
  text-decoration: none;
  color: var(--primary);
}

.logo:hover {
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 1024px) {
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title-main {
    font-size: 2.2rem;
  }

  .location-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem !important;
  }
}

@media (max-width: 480px) {
  .section-title-main {
    font-size: 1.8rem;
  }

  .page-header h1 {
    font-size: 2rem !important;
  }
}


/* Fix footer logos com link */
.footer-logos a {
  display: inline-block;
  height: 50px;
}

.footer-logos a img {
  height: 50px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* Logo HIP Housing maior - COM !important para forçar */
.footer-logos a:first-child {
  height: 80px !important;
  max-height: 80px !important;
}

.footer-logos a:first-child img {
  height: 80px !important;
  max-height: 80px !important;
  max-width: 180px !important;
}

/* Alternativa: Também funciona com nth-child */
.footer-logos a:nth-child(1) {
  height: 80px !important;
}

.footer-logos a:nth-child(1) img {
  height: 80px !important;
  max-width: 180px !important;
}

/* SUPER ESPECÍFICO: Classe dedicada para logo HIP Housing */
.footer-logos .logo-hip-housing {
  height: 80px !important;
  max-height: 80px !important;
  min-height: 80px !important;
  display: inline-block !important;
}

.footer-logos .logo-hip-housing img,
.footer-logos .logo-hip-img {
  height: 80px !important;
  max-height: 80px !important;
  min-height: 80px !important;
  max-width: 180px !important;
  width: auto !important;
  object-fit: contain !important;
}


/* MAP SECTION */
.map-section {
  padding: 4rem 0;
  background: #f9f9f9;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}