/* ─── Tokens ─────────────────────────────── */
:root {
  --c-dark:       #111820;
  --c-dark-2:     #1E2939;
  --c-text:       #101828;
  --c-muted:      #4A5565;
  --c-subtle:     #6A7282;
  --c-light-text: #99A1AF;
  --c-border:     #E5E7EB;
  --c-bg-soft:    #F9FAFB;
  --c-white:      #FFFFFF;
  --c-label:      #364153;
  --radius-sm:    6px;
  --radius-md:    8px;
}

/* ─── Base ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h4, h5, h6 {
  font-family: 'Literata', serif !important;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── Typography helpers ─────────────────── */
.heading-xl {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}
.heading-lg {
  font-size: clamp(25px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.007em;
  color: var(--c-dark);
}
.heading-md {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}
.subtext {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  color: var(--c-muted);
}
.body-sm {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  letter-spacing: -0.01em;
}

/* ─── Navbar ─────────────────────────────── */
.menu {
  background: var(--c-white);
  box-shadow: 0 1px 3px rgba(0,0,0,.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.menu .nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-label);
  letter-spacing: -0.01em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--c-dark); }

.btn-nav {
  background: var(--c-dark);
  color: var(--c-white) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  transition: background .15s;
  border: none;
  display: inline-block;
}
.btn-nav:hover { background: var(--c-dark-2); }

.navbar-toggler-custom {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.navbar-toggler-custom span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark);
  margin: 5px 0;
  transition: all .3s;
}

/* ─── Hero ───────────────────────────────── */
.section-hero{
  background: var(--c-white);
  padding: 80px 40px;
  min-height: 808px;
}
.hero-text .headline { margin-bottom: 20px; }
.hero-text .subline {
  font-size: 20px;
  line-height: 1.6;
  color: var(--c-muted);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero-bullets { list-style: none; padding: 0; margin: 0 0 40px; }
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--c-label);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.btn-primary-dark {
  background: var(--c-dark-2);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, transform .1s;
  cursor: pointer;
}
.btn-primary-dark:hover {
  background: #2d3f55;
  color: var(--c-white);
  transform: translateY(-1px);
}

/* Hero image */
.hero-image-wrap {
  min-height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder {
  background: #D1D5DC;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--c-subtle);
  font-weight: 500;
  min-height: 600px;
}

.main-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
	min-height: 600px;
}

.main-bg-video {
  transition: opacity 0.2s;
}


/* ─── Stats ──────────────────────────────── */
.section-stast {
 background: linear-gradient(85.96deg, #111820 4.75%, #2C4863 116.91%);
  padding: 60px 0px;
}
.stat-item { text-align: center; padding: 0 24px; }
.stat-number {
  font-family: 'Literata', serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1;
  letter-spacing: 0.007em;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 16px;
  color: var(--c-border);
  line-height: 1.5;
}

/* ─── How it works ───────────────────────── */
.section-process{
  background: var(--c-white);
  padding: 96px 40px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .heading-lg { margin-bottom: 12px; }

.step-item { text-align: center; }
.step-icon {
  width: 64px;
  height: 64px;
  background: #1F3447;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.step-icon svg { width: 32px; height: 32px; }
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}
.step-desc { font-size: 14px; line-height: 1.6; color: var(--c-muted); }

/* ─── Portfolio ──────────────────────────── */
.section-portafolio {
  position: relative;
  padding: 96px 40px 80px;
  background-color: var(--c-bg-soft);
  overflow: hidden;
}

.portaf-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.section-portafolio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 246, 248, 0.82);
  z-index: 1;
  pointer-events: none;
}

.section-portafolio .container-xxl {
  position: relative;
  z-index: 2;
}
.property-card {
  background: var(--c-white);
  border-radius: 8px;
  box-shadow: 1px 4px 4px rgba(0, 0, 0, .10);
  overflow: hidden;
  padding: 40px 40px 0 40px;
}
.property-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.property-img-placeholder {
  width: 100%;
  height: 580px;
  background: #C8CDD6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--c-subtle);
  font-weight: 500;
}
.property-body {
  padding: 28px 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.property-info h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 8px;
  letter-spacing: 0.003em;
}
.property-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.property-meta svg { width: 16px; height: 16px; flex-shrink: 0; }
.property-tags {
  font-size: 14px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-tags .dot { color: var(--c-subtle); }
.return-badge {
  background: var(--c-dark);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  text-align: center;
  min-width: 120px;
  flex-shrink: 0;
}
.return-badge .label-sm {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-light-text);
  display: block;
  margin-bottom: 6px;
}
.return-badge .return-num {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.2;
}
.return-badge .label-proj {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-light-text);
  display: block;
  margin-top: 6px;
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  max-width: 1008px;
  margin: 0 auto;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-track .property-card {
  flex: 0 0 100%;
  width: 100%;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.carousel-btn:hover { background: var(--c-bg-soft); }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #D1D5DC;
  display: block;
  transition: background .2s, width .2s;
}
.carousel-dots span.active {
  width: 32px;
  background: var(--c-dark);
}

/* ─── Benefits ───────────────────────────── */
.section-benefits {
  background: var(--c-white);
  padding: 96px 40px;
}
.benefit-item { margin-bottom: 8px; }
.benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--c-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.benefit-desc { font-size: 16px; line-height: 1.625; color: var(--c-muted); }

/* ─── Team carousel ──────────────────────── */
.section-team{
  background: var(--c-bg-soft);
  padding: 96px 40px;
}
.team-carousel-wrap {
  position: relative;
  margin-top: 64px;
}
.team-carousel-viewport { overflow: hidden; padding-bottom: 12px; margin-bottom: -12px;}
.team-carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.team-carousel-slide {
  flex: 0 0 calc(33.333% - 16px);
  margin-right: 24px;
}
.team-carousel-slide:last-child { margin-right: 0; }

.team-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: 1px 4px 4px rgba(0,0,0,.10);
  padding: 32px;
  height: 100%;
}
.team-avatar-wrap {
  width: 102px;
  height: 102px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
}
.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.1);
  transform-origin: center 1%;
  display: block;
}
.team-name {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 4px;
}
.team-role {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-subtle);
  text-align: center;
  margin-bottom: 16px;
}
.team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
  text-align: center;
}
.team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: #b6b8bb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  z-index: 2;
}
.team-arrow:hover { background: #797b7e; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.team-arrow svg { width: 20px; height: 20px; }
.team-arrow-prev { left: -35px; }
.team-arrow-next { right: -35px; }

/* ─── Institutional Backing ──────────────── */
.section-backing {
  background: var(--c-white);
  padding: 96px 40px;
}
.partner-card {
  background: var(--c-bg-soft);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
}
.partner-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.4;
}
.partner-role {
  font-size: 12px;
  color: var(--c-subtle);
  line-height: 1.4;
}

/* ─── Contact / Form ─────────────────────── */
.section-contact {
  background: var(--c-bg-soft);
  padding: 96px 40px;
}
.form-card {
  background: var(--c-white);
  border-radius: var(--radius-md);
  box-shadow: 1px 4px 4px rgba(0,0,0,.10);
  padding: 40px 40px 32px;
  max-width: 608px;
  margin: 40px auto 0;
}
.attia-field-group { margin-bottom: 24px; }
.attia-field-group label,
.attia-field-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-label);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.attia-field-group input[type="text"],
.attia-field-group input[type="email"],
.attia-field-group input[type="tel"],
.attia-field-group select,
.attia-field-group textarea,
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-tel,
.wpcf7-form-control.wpcf7-select {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.attia-field-group input::placeholder,
.wpcf7-form-control::placeholder { color: rgba(10,10,10,.45); }
.attia-field-group input:focus,
.attia-field-group select:focus,
.wpcf7-form-control:focus {
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(17,24,32,.06);
}
.attia-select-wrap { position: relative; }
.attia-select-wrap select { padding-right: 40px; cursor: pointer; }
.attia-select-wrap::after {
  content: '';
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--c-subtle);
}
.btn-submit {
  display: block;
  width: 100%;
  height: 56px;
  background: #000;
  color: var(--c-white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: -0.01em;
  box-shadow: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px -1px rgba(0,0,0,.10);
  transition: background .15s, transform .1s;
  margin-top: 8px;
}
.btn-submit:hover { background: #1a1a1a; transform: translateY(-1px); }
.form-legal {
  font-size: 12px;
  color: var(--c-subtle);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}
.form-legal a { color: var(--c-muted); text-decoration: underline; }
.wpcf7-response-output {
  font-size: 13px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
/* ─── Dropdown con radio buttons (campo inversion) ─── */
.custom-select-trigger {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(10,10,10,.45);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.custom-select-trigger.has-value { color: var(--c-text); }
.custom-select-trigger:hover { border-color: #6b7280; }
.custom-select-trigger.open {
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(17,24,32,.06);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.chevron {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--c-subtle);
  transition: transform 0.2s;
}
.custom-select-trigger.open .chevron { transform: rotate(180deg); }

.dropdown-list {
  display: none;
  position: absolute;
  left: 0; right: 0;
  background: var(--c-white);
  border-top: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
  z-index: 100;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  padding: 0 10px;
}
.dropdown-list.open { display: block; }

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px;
  cursor: pointer;
  transition: background 0.1s;
  margin-bottom: 10px;
  margin-top: 10px;
}
.radio-option:hover { background: var(--c-bg-soft); }
.radio-option.selected { background: #EEEDFE; }

.radio-circle {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #101828;
  flex-shrink: 0;
  background: white;
  transition: border-color 0.15s, border-width 0.15s;
}
.radio-option.selected .radio-circle { border: 6px solid #101828; }

.radio-text {
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--c-text);
}
.radio-option.selected .radio-text { font-weight: 500; color: #101828; }

/* ─── Radio cards ─── */
.radio-list { display: flex; flex-direction: column; gap: 8px; }

.radio-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.radio-option:hover { border-color: #6b7280; }
.radio-option.selected {
  background: var(--c-bg-soft);
  border-color: #6b7280;
  box-shadow: 0 0 0 3px rgba(17,24,32,.06);
}

.radio-text {
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--c-text);
  line-height: 1.4;
  flex: 1;
  padding-right: 12px;
}

.radio-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  flex-shrink: 0;
  background: white;
  transition: border-color .15s, border-width .15s;
}
.radio-option:hover .radio-circle { border-color: #6b7280; }
.radio-option.selected .radio-text { font-weight: 500; }
/* ─── FAQ ────────────────────────────────── */
.section-faq {
  background: var(--c-white);
  padding: 96px 40px;
}
.faq-list {
  max-width: 704px;
  margin: 48px auto 0;
}
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
  letter-spacing: -0.01em;
  gap: 16px;
}
.faq-question:hover { background: var(--c-bg-soft); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ─── Boton flotante ─────────────────────────────── */
.info-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0f1623;
  color: var(--c-white);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 
    0 1px 2px rgba(0,0,0,0.07),
    0 4px 12px rgba(0,0,0,0.12),
    0 8px 24px rgba(0,0,0,0.08);
  z-index: 9999;
  cursor: pointer;
  border: none;
  overflow: hidden;
  white-space: nowrap;
  font-family: inherit;
  transition: gap 0.3s ease, box-shadow 0.25s ease, padding 0.3s ease;
}

.info-float .fab-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.info-float .fab-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}

.info-float:hover {
  gap: 10px;
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.08),
    0 8px 20px rgba(0,0,0,0.15);
}

.info-float:hover .fab-text {
  max-width: 200px;
  opacity: 1;
}

/* ─── Backdrop ───────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.22s ease;
}
.modal-backdrop.open { display: flex; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* ─── Card ───────────────────────────────── */
.modal-card {
  background: var(--c-white);
  border-radius: 18px;
  border: 1px solid var(--c-border);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 500px;
  height: 670px;
  margin: 16px;
  overflow: hidden;
  animation: slideUp 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

.modal-card .dropdown-list {
  bottom: 100%;
  top: auto;
  margin-bottom: 8px;
  margin-top: 0;
}
@keyframes slideUp {
  from { opacity:0; transform: scale(0.93) translateY(16px) }
  to   { opacity:1; transform: scale(1) translateY(0) }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 7px 16px 0;
}
.btn-close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--c-bg-soft);
  color: var(--c-muted);
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.btn-close:hover {
  background: var(--c-border);
  color: var(--c-text);
}

.modal-body { padding: 8px 28px 28px; }
.modal-body h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0 0 4px;
}
.modal-body > p {
  font-size: 14px;
  color: var(--c-subtle);
  margin: 0 0 20px;
}

/* ─── Inputs, select, tel ────────────────── */
#infoModal .wpcf7-form p { margin: 0 0 14px; }

#infoModal .wpcf7-form label,
#infoModal .wpcf7-form .attia-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-label);
  margin-bottom: 6px;
}

#infoModal .wpcf7-form input[type="text"],
#infoModal .wpcf7-form input[type="email"],
#infoModal .wpcf7-form input[type="tel"] {
  width: 100%;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0 14px;
  font-size: 14px;
  color: var(--c-text);
  background: var(--c-bg-soft);
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
#infoModal .wpcf7-form input::placeholder { color: var(--c-light-text); }

#infoModal .wpcf7-form input[type="text"]:focus,
#infoModal .wpcf7-form input[type="email"]:focus,
#infoModal .wpcf7-form input[type="tel"]:focus {
  border-color: var(--c-dark-2);
  box-shadow: 0 0 0 3px rgba(30,41,57,0.1);
  background: var(--c-white);
}

/* ─── Select ─────────────────────────────── */
#infoModal .wpcf7-form select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0 36px 0 14px;
  font-size: 14px;
  color: var(--c-text);
  background-color: var(--c-bg-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236A7282' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  box-sizing: border-box;
  font-family: inherit;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
#infoModal .wpcf7-form select:focus {
  border-color: var(--c-dark-2);
  box-shadow: 0 0 0 3px rgba(30,41,57,0.1);
  background-color: var(--c-white);
}

/* ─── Checkbox términos ──────────────────── */
#infoModal .wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
}
#infoModal .wpcf7-form .wpcf7-list-item { margin: 0; }
#infoModal .wpcf7-form input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--c-dark-2);
  cursor: pointer;
  flex-shrink: 0;
}
#infoModal .wpcf7-form .wpcf7-list-item-label {
  font-size: 13px;
  color: var(--c-muted);
}
#infoModal .wpcf7-form .wpcf7-list-item-label a {
  color: var(--c-dark-2);
  text-decoration: underline;
}

/* ─── Botón submit ───────────────────────── */
#infoModal .wpcf7-form input[type="submit"] {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--c-dark) 0%, var(--c-dark-2) 100%);
  color: var(--c-white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s, transform 0.15s;
}
#infoModal .wpcf7-form input[type="submit"]:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
#infoModal .wpcf7-form input[type="submit"]:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ─── Respuesta CF7 ──────────────────────── */
#infoModal .wpcf7-response-output {
  margin-top: 12px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  color: var(--c-muted);
}

/* ─── Footer ─────────────────────────────── */
footer {
  background: var(--c-dark);
  padding-left: 40px;
  padding-right: 40px;
}
.footer-top {
  padding: 48px 0 40px;
}
.footer-brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-light-text);
  max-width: 309px;
}
.footer-col-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-light-text);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a,
.footer-contact-item a {
  font-size: 14px;
  color: var(--c-white);
  transition: color .15s;
  letter-spacing: -0.01em;
}
.footer-links a:hover { color: var(--c-light-text); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 14px; color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--c-subtle);
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-copy {
  font-size: 12px;
  color: var(--c-subtle);
}

/* ─── Responsive helpers ─────────────────── */
@media (max-width: 768px) {

  .section-hero,.section-portafolio,.section-benefits, .section-team ,
  .section-backing,.section-process{
    padding-left: 10px;
    padding-right: 10px;
  }
  .section-contact ,.section-faq{ padding-left: 20px; padding-right: 20px;}
  /* Navbar mobile */
  .navbar-toggler-custom { display: block; }
  .nav-links-wrap {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--c-white);
    border-top: 1px solid var(--c-border);
    padding: 24px 32px;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .nav-links-wrap.open { display: flex; }
  .nav-links { flex-direction: column; gap: 0; width: 100%; }
  .nav-links a { display: block; padding: 12px 0; }
  .btn-nav { margin-top: 16px; width: 100%; text-align: center; }

  /* Hero */
  .hero-image-wrap { min-height: 320px; margin-top: 40px; }
  .img-placeholder { min-height: 320px; }
  .btn-primary-dark { width: 100%; justify-content: center; }

  /* Misc */
  br { display: none; }
  .property-card{padding-left: 25px; padding-right: 25px;}
  .property-img { height: auto; }
  .property-body { flex-direction: row; }
  .return-badge { align-self: flex-start; }

  .stat-label{font-size: 14px;}
  .stat-item{padding: 0 14px 24px;}
  .subtext{font-size: 18px;}
  /* Team arrows */
  .team-arrow-prev { left: 5px; }
  .team-arrow-next { right: 5px; }
  
  .modal-card {height: 95vh;}

	.form-card {padding: 40px 30px 32px;}
  .main-bg-video {min-height: 400px;}

  footer{padding-left: 20px; padding-right: 20px;}

}

@media (max-width: 900px) {
  .team-carousel-slide { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 600px) {
  .team-carousel-slide { flex: 0 0 100%; margin-right: 24px; }
}