
:root {
  --primary-color: #1a2f1a;
  --secondary-color: #d4af37;
  --accent-color: #ff6b35;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --background-light: #fafafa;
  --background-dark: #0f0f0f;
  --gradient-primary: linear-gradient(135deg, #1a2f1a 0%, #2d5016 100%);
  --gradient-secondary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 16px 60px rgba(0, 0, 0, 0.25);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --cinza: #ededed;
}


/*
:root {
  --primary-color: #8C1B18;
  --secondary-color: #B94641;
  --accent-color: #641412;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-light: #ffffff;
  --background-light: #fafafa;
  --background-dark: #0f0f0f;
  --gradient-primary: linear-gradient(135deg, #1a2f1a 0%, #2d5016 100%);
  --gradient-secondary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
  --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 16px 60px rgba(0, 0, 0, 0.25);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
*/
/*

Principal rgb(140, 27, 24)  #8C1B18 Cor base
Mais clara  rgb(185, 70, 65)  #B94641 
Mais escura rgb(100, 20, 18)  #641412 
Mais saturada rgb(160, 15, 10)  #A00F0A 
Desaturada  rgb(140, 50, 50)  #8C3232 
Neutra quente rgb(170, 90, 85)  #AA5A55
*/


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

img, a{ user-select:none }
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

.mt30{ margin-top:30px; }

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-light);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-color);
  line-height: 1;
}

.brand-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  color: var(--secondary-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

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

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

.cta-button {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
}

.hero-background {
  background: url(images/1.jpg);
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 47, 26, 0.5) 0%, rgba(45, 80, 22, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--secondary-color);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 0.9;
}

.title-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
}

.title-line:first-child {
  animation-delay: 0.4s;
}

.title-line.accent {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.6s;
  padding-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-label {
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-visual {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.4s forwards;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: var(--text-light);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: var(--secondary-color);
  animation: scrollMove 2s ease-in-out infinite;
}

.scroll-text {
  color: var(--text-light);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
}

/* Quinta Section */
.quinta-section {
  padding: 8rem 0;
  background: var(--background-light);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.quinta-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.large-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.highlight-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
}

.quinta-image {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: var(--shadow-medium);
}

/* Park Section */
.park-section {
  padding: 8rem 0;
  background: var(--cinza);
  color: var(--text-light);
}

.park-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.park-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: rgba(0,0,0,0.9);
}

.park-subtitle {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.park-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  color: rgba(0,0,0,0.9);
}

.park-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.park-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  backdrop-filter: blur(10px);
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-name {
  font-weight: 600;
  color: var(--text-light);
}

.park-image {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: var(--shadow-heavy);
}

/* Location Section */
.location-section {
  padding: 8rem 0;
  background: var(--background-light);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.location-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.location-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 0px;
  /*box-shadow: var(--shadow-medium);*/
}




/* Apartments Section */
.apartments-section {
  padding: 8rem 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.apartments-header {
  text-align: center;
  margin-bottom: 6rem;
}

.apartments-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--text-light);
}

.apartments-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.apartments-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.apartment-types {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

/*
.apartment-type {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: start;
}
*/

/* CHANGED: single column layout */
.apartment-type {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.apartment-name {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.apartment-area {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/*
.apartment-modes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
*/

.apartment-modes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mode-item {
  padding: 2rem;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

.mode-item:hover {
  background: rgba(212, 175, 55, 0.08);
}

.mode-item.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--secondary-color);
}

.mode-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-family: 'Playfair Display', serif;
}

.mode-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 1rem;
}

.apartment-visual {
  width: 100%;
  position: relative;
}

.apartment-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
}

.apartment-image.active {
  opacity: 1;
  position: relative;
}







.apartment-top {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.apartment-info {
  text-align: left;
}

.apartment-name {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.apartment-area {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}



/*

.apartment-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s ease;
}
*/



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1200px) {
  .apartment-modes {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .apartment-image {
    /*height: 320px;*/
  }
}













































/* Club Section */
.club-section {
  padding: 8rem 0;
  background: var(--cinza);
  color: var(--text-light);
}

.club-header {
  text-align: center;
  margin-bottom: 4rem;
}

.club-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.club-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.club-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.club-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.9);
  max-width: 800px;
  margin: 0 auto;
}

.club-floors {
  max-width: 1000px;
  margin: 0 auto;
}

.floor-selector {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.floor-btn {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.9);
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.floor-btn:hover,
.floor-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--text-primary);
}

.floor-content {
  position: relative;
}

.floor-image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition);
}

.floor-image.active {
  opacity: 1;
  position: relative;
}

.club-image {
  width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: var(--shadow-heavy);
}

/* Visit Section */
.visit-section {
  padding: 6rem 0;
  background: var(--secondary-color);
  text-align: center;
}

.visit-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.visit-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.visit-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.visit-btn {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
}

.visit-btn.primary {
  background: var(--primary-color);
  color: var(--text-light);
  box-shadow: var(--shadow-medium);
}

.visit-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

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

.visit-btn.secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Contact Section */


.form-feedback {
    padding: 15px 0px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}
.form-feedback.sucesso {
    background: #e6f6ea;
    color: #1e7e34;
        text-align: center;
        border-radius: 20px;
}
.form-feedback.erro {
    background: #fdecea;
    color: #b02a37;
        text-align: center;
        border-radius: 20px;
}



.contact-section {
  padding: 8rem 0;
  background: #ffffff;
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-subtitle {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-tabs {
  display: flex;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
  background: none;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: var(--primary-color);
  border-bottom-color: var(--secondary-color);
}

.form-content {
  display: none;
}

.form-content.active {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    border: 1px solid #444;
    background: none;
}

.form-group select{
    padding: 1rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    border: 1px solid #444;
    background: none;

    appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'>\
<polyline points='6 9 12 15 18 9' />\
</svg>");
  
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 16px;
}



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

.checkbox-group {
  flex-direction: row;
  align-items: baseline;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.form-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.form-link:hover {
  color: var(--secondary-color);
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 1.2rem 3rem;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  width: 100%;
  margin-top: 2rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}



.info-section {
   padding: 8rem 0;
    background: var(--cinza);

}
.info-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.info-btn {
  padding: 1rem 1rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;
  margin:0px 0.5rem;
  text-align: center;
}

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

.info-btn.secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
}








/* Team Section */
.team-section {
  padding: 8rem 0;
  background: #f7f7f7;
  color: var(--text-light);
}

/*.team-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-light);
}*/
.team-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
    color: var(--primary-color);
}
/*
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}
*/
.team-grid {
    display: grid;
    grid-template-columns: 60%;
    gap: 3rem;
    justify-items: center;
    justify-content: center;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-logo {
  margin-bottom: 2rem;
}

.logo-image {
  max-width: 150px;
  height: auto;
  border-radius: var(--border-radius);
}

.team-name {
  font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 300;
    font-family: 'Playfair Display', serif;
}

.team-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 625px;
    margin: 0 auto;
}

/* Footer */
.footer {
  background: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-logo-img {
  max-width: 120px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.social-link:hover {
  color: var(--secondary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--text-light);
}

.footer-disclaimer {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollMove {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(40px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .quinta-content,
  .park-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .apartment-type {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }


  .info-container {
    flex-direction: column !important;
  }

  .info-btn {
      margin: 1rem 0 0 0 !important;
      width: 100% !important;
  }
  .hero-features {
    flex-direction: column !important;
    max-width: 95% !important;
    margin: 0 auto !important;
  }

  .scroll-indicator {
    left: 45% !important;
  }


}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 1rem;
  }
  
  .hero-content {
    padding: 0 1rem;
    text-align: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .visit-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .floor-selector {
    flex-direction: column;
    align-items: center;
  }
  
  .park-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-features {
    justify-content: center;
  }
  
  .feature-item {
    flex: 1;
    text-align: center;
    min-width: 120px;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
}



/* Overlay */


html.modal-open,
body.modal-open {
  height: 100%;
}


.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 9999;
}

/* Modal */
.modal {
  background: #f5f4f2;
  width: 90%;
  max-width: 640px;
  border-radius: 14px;
  padding: 32px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Document list */
.modal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.doc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #ddd;
  text-decoration: none;
  color: inherit;
}

.doc-item:hover {
  opacity: 0.8;
}

.doc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.doc-title {
  font-weight: 600;
}

.doc-subtitle {
  font-size: 14px;
  color: #666;
}

/* Right side */
.doc-pdf {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.doc-pdf svg {
  width: 22px;
  height: 22px;
  fill: #c0392b;
}

/* Remove default link styles */
.doc-item:link,
.doc-item:visited {
  color: inherit;
  text-decoration: none;
}


/* Mobile */
@media (max-width: 480px) {
  .modal {
    padding: 24px;
  }

  .doc-text {
    max-width: 65%;
  }
}

