/* TRAKWERK INMUEBLES — Stylesheet v1.1 */
:root {
  --navy: #1A2640; --navy-deep: #0F1828;
  --gold: #C9A14B; --gold-light: #E5C16B;
  --cream: #F5F0EA; --cream-soft: #FAF7F2;
  --white: #FFFFFF; --ink: #1B1D24; --ink-soft: #4A4E5B;
  --rule: #D9D2C5; --whatsapp: #25D366;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max: 1280px; --gutter: clamp(1.25rem, 4vw, 3rem);
  --shadow-card: 0 1px 0 rgba(26, 38, 64, 0.04), 0 12px 40px rgba(26, 38, 64, 0.10);
  --t-fast: 200ms cubic-bezier(.4,0,.2,1);
  --t-base: 350ms cubic-bezier(.4,0,.2,1);
  --t-slow: 600ms cubic-bezier(.4,0,.2,1);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--cream-soft); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.kicker { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.18em; font-size: 11px; font-weight: 600; color: var(--gold); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; color: var(--navy); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2.5vw, 1.875rem); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(245, 240, 234, 0.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--rule); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem var(--gutter); max-width: var(--max); margin: 0 auto; }
.logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.16em; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; }
.logo .gold { color: var(--gold); }
.logo small { font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.3em; color: var(--ink-soft); font-weight: 600; margin-left: 0.5rem; border-left: 1px solid var(--rule); padding-left: 0.5rem; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); position: relative; padding: 0.25rem 0; transition: color var(--t-fast); }
.nav-links a:hover { color: var(--gold); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--gold); }
.nav-cta { background: var(--navy); color: var(--cream); padding: 0.65rem 1.25rem; font-size: 13px; font-weight: 600; letter-spacing: 0.05em; transition: background var(--t-fast); }
.nav-cta:hover { background: var(--navy-deep); }
.menu-toggle { display: none; width: 28px; height: 28px; flex-direction: column; justify-content: space-around; }
.menu-toggle span { display: block; height: 1.5px; background: var(--navy); transition: all var(--t-fast); }
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1.5rem var(--gutter); gap: 1.2rem; border-bottom: 1px solid var(--rule); }
}
.hero { position: relative; background: var(--navy); color: var(--cream); padding: clamp(5rem, 14vw, 9rem) var(--gutter) clamp(4rem, 10vw, 7rem); overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 30%, rgba(201, 161, 75, 0.12), transparent 50%), radial-gradient(circle at 80% 70%, rgba(201, 161, 75, 0.08), transparent 50%); pointer-events: none; }
.hero-grid { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.3fr 1fr; align-items: end; gap: 4rem; } }
.hero-kicker { color: var(--gold-light); margin-bottom: 1.5rem; display: inline-flex; align-items: center; gap: 0.7rem; }
.hero-kicker::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); }
.hero h1 { color: var(--cream); font-weight: 400; font-style: italic; margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--gold-light); font-style: normal; font-weight: 500; }
.hero p { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(245, 240, 234, 0.82); max-width: 540px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; padding: 2rem 0 0; border-top: 1px solid rgba(245, 240, 234, 0.15); }
.hero-stats .stat strong { display: block; font-family: var(--font-serif); font-size: clamp(1.875rem, 3vw, 2.5rem); color: var(--gold-light); font-weight: 500; line-height: 1; margin-bottom: 0.5rem; }
.hero-stats .stat span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(245, 240, 234, 0.6); }
.hero-cta { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--gold); color: var(--navy); padding: 1rem 1.75rem; font-weight: 600; font-size: 14px; letter-spacing: 0.06em; transition: all var(--t-base); }
.hero-cta:hover { background: var(--gold-light); transform: translateX(4px); }
.hero-cta svg { width: 16px; height: 16px; }
section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; max-width: 720px; }
.section-head .kicker { display: inline-flex; align-items: center; gap: 0.7rem; }
.section-head .kicker::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.section-head p { color: var(--ink-soft); font-size: clamp(1rem, 1.3vw, 1.125rem); margin-top: 0.5rem; max-width: 580px; }
.props-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 700px) { .props-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .props-grid { grid-template-columns: repeat(3, 1fr); } }
.prop-card { background: var(--white); border: 1px solid var(--rule); display: flex; flex-direction: column; transition: all var(--t-base); position: relative; overflow: hidden; }
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--gold); }
.prop-card .img-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.prop-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.prop-card:hover .img-wrap img { transform: scale(1.06); }
.prop-card .badge { position: absolute; top: 1rem; left: 1rem; background: var(--navy); color: var(--cream); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; padding: 0.4rem 0.7rem; text-transform: uppercase; }
.prop-card .badge.rent { background: var(--gold); color: var(--navy); }
.prop-card .body { padding: 1.75rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.prop-card .folio { font-family: var(--font-mono); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.prop-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; font-weight: 500; }
.prop-card .zone { color: var(--ink-soft); font-size: 14px; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.4rem; }
.prop-card .zone svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }
.prop-card .specs { display: flex; gap: 1rem; font-size: 12px; color: var(--ink-soft); padding: 1rem 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin-bottom: 1.25rem; flex-wrap: wrap; }
.prop-card .specs span { display: inline-flex; align-items: center; gap: 0.3rem; }
.prop-card .specs strong { color: var(--navy); font-weight: 600; }
.prop-card .price-row { display: flex; align-items: flex-end; justify-content: space-between; margin-top: auto; }
.prop-card .price { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); font-weight: 500; line-height: 1; }
.prop-card .price small { font-family: var(--font-sans); font-size: 11px; color: var(--ink-soft); letter-spacing: 0.08em; text-transform: uppercase; margin-left: 0.25rem; font-weight: 600; }
.prop-card .view-link { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: var(--gold); text-transform: uppercase; display: inline-flex; align-items: center; gap: 0.4rem; transition: gap var(--t-fast); }
.prop-card:hover .view-link { gap: 0.7rem; }
.verticales { background: var(--navy); color: var(--cream); }
.verticales h2 { color: var(--cream); }
.verticales-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(245, 240, 234, 0.1); margin-top: 3rem; }
@media (min-width: 720px) { .verticales-grid { grid-template-columns: repeat(3, 1fr); } }
.vert { background: var(--navy); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; transition: background var(--t-base); }
.vert:hover { background: var(--navy-deep); }
.vert .icon { width: 48px; height: 48px; color: var(--gold); }
.vert h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 0.5rem; }
.vert p { font-size: 14px; color: rgba(245, 240, 234, 0.7); line-height: 1.6; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 880px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-img { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%); position: relative; overflow: hidden; }
.about-img::after { content: 'TRAKWERK'; position: absolute; bottom: 2rem; left: 2rem; font-family: var(--font-serif); font-size: 4rem; font-style: italic; color: var(--gold); letter-spacing: 0.1em; opacity: 0.2; }
.about-img::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(201, 161, 75, 0.3), transparent 50%); }
.about-content .pillars { margin-top: 2rem; display: grid; gap: 1.25rem; }
.pillar { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; padding-top: 1.5rem; border-top: 1px solid var(--rule); }
.pillar .num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); font-weight: 500; line-height: 1; }
.pillar h4 { font-family: var(--font-sans); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.4rem; text-transform: uppercase; }
.pillar p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }
.advisors-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 720px) { .advisors-grid { grid-template-columns: repeat(2, 1fr); } }
.advisor-card { background: var(--white); border: 1px solid var(--rule); padding: 2.5rem 2rem; display: flex; flex-direction: column; gap: 1rem; position: relative; overflow: hidden; transition: all var(--t-base); }
.advisor-card:hover { border-color: var(--gold); }
.advisor-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--gold); transition: height var(--t-base); }
.advisor-card:hover::before { height: 100%; }
.advisor-card .avatar { width: 80px; height: 80px; background: var(--cream); border: 1px solid var(--rule); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.875rem; color: var(--navy); font-weight: 500; margin-bottom: 0.5rem; }
.advisor-card h3 { font-size: 1.625rem; }
.advisor-card .role { font-size: 12px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; font-weight: 600; }
.advisor-card .focus { font-size: 14px; color: var(--ink-soft); line-height: 1.65; padding: 1rem 0; border-top: 1px solid var(--rule); margin-top: 0.5rem; }
.advisor-card .properties-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; color: var(--navy); letter-spacing: 0.1em; padding: 0.35rem 0.7rem; background: var(--cream); border: 1px solid var(--rule); margin-right: 0.4rem; margin-bottom: 0.4rem; }
.advisor-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.btn-wa { background: var(--whatsapp); color: var(--white); padding: 0.7rem 1.1rem; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 0.5rem; transition: all var(--t-fast); }
.btn-wa:hover { background: #1ebe5d; transform: translateY(-1px); }
.btn-wa svg { width: 14px; height: 14px; }
.btn-ghost { background: transparent; color: var(--navy); border: 1px solid var(--navy); padding: 0.7rem 1.1rem; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; transition: all var(--t-fast); }
.btn-ghost:hover { background: var(--navy); color: var(--cream); }
.cta-band { background: linear-gradient(135deg, rgba(26, 38, 64, 0.94), rgba(15, 24, 40, 0.96)), repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(201, 161, 75, 0.04) 14px, rgba(201, 161, 75, 0.04) 15px); color: var(--cream); padding: clamp(4rem, 8vw, 6rem) 0; }
.cta-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 880px) { .cta-grid { grid-template-columns: 1.4fr 1fr; gap: 4rem; } }
.cta-band h2 { color: var(--cream); font-style: italic; font-weight: 400; }
.cta-band h2 .accent { color: var(--gold-light); font-style: normal; font-weight: 500; }
.cta-band p { color: rgba(245, 240, 234, 0.8); font-size: 1.05rem; line-height: 1.75; margin-top: 1rem; max-width: 520px; }
.cta-band .right { display: flex; flex-direction: column; gap: 1rem; }
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 880px) { .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 4rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info .row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule); }
.contact-info .row:last-child { border-bottom: none; }
.contact-info .row .icon { width: 36px; height: 36px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.contact-info .row .icon svg { width: 16px; height: 16px; }
.contact-info .row h4 { font-family: var(--font-sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 0.3rem; font-weight: 600; }
.contact-info .row p { font-size: 1rem; color: var(--navy); font-weight: 500; }
.contact-info .row p a { color: var(--navy); }
.contact-info .row p a:hover { color: var(--gold); }
.contact-form { background: var(--white); padding: 2.5rem; border: 1px solid var(--rule); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.85rem 0; border: none; border-bottom: 1px solid var(--rule); font-family: var(--font-sans); font-size: 15px; color: var(--ink); background: transparent; transition: border-color var(--t-fast); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-submit { background: var(--navy); color: var(--cream); padding: 1rem 2rem; font-size: 13px; letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase; width: 100%; margin-top: 0.5rem; transition: all var(--t-base); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.form-submit:hover { background: var(--gold); color: var(--navy); }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 1rem; line-height: 1.6; }
.site-footer { background: var(--navy-deep); color: rgba(245, 240, 234, 0.7); padding: 4rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(245, 240, 234, 0.1); }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 4rem; } }
.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand .logo .gold { color: var(--gold-light); }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 380px; margin-bottom: 1.5rem; }
.footer-col h5 { font-family: var(--font-sans); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold-light); font-weight: 700; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 14px; color: rgba(245, 240, 234, 0.7); transition: color var(--t-fast); }
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 12px; flex-wrap: wrap; gap: 1rem; }
.footer-bottom span { color: rgba(245, 240, 234, 0.5); }
.footer-bottom .credit { font-family: var(--font-mono); letter-spacing: 0.08em; }
.whatsapp-float { position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; background: var(--whatsapp); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 50; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); animation: pulse-wa 2.5s ease-in-out infinite; transition: transform var(--t-fast); }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); } 50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); } }
.prop-hero { background: var(--navy); color: var(--cream); padding: 3rem var(--gutter) 2rem; }
.breadcrumb { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; color: rgba(245, 240, 234, 0.6); }
.breadcrumb a { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 0.5rem; color: rgba(245, 240, 234, 0.3); }
.prop-detail-grid { max-width: var(--max); margin: 0 auto; padding: clamp(2rem, 5vw, 4rem) var(--gutter); display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 980px) { .prop-detail-grid { grid-template-columns: 1.7fr 1fr; gap: 3.5rem; } }
.gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-main { aspect-ratio: 4/3; background: var(--navy); overflow: hidden; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: opacity var(--t-base); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
@media (min-width: 720px) { .gallery-thumbs { grid-template-columns: repeat(5, 1fr); } }
.gallery-thumbs button { aspect-ratio: 4/3; border: 2px solid transparent; overflow: hidden; padding: 0; background: var(--navy); transition: all var(--t-fast); }
.gallery-thumbs button.active { border-color: var(--gold); }
.gallery-thumbs button:hover { opacity: 0.85; }
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.prop-info { display: flex; flex-direction: column; gap: 2rem; }
.prop-meta { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.prop-meta .folio { font-family: var(--font-mono); color: var(--ink-soft); padding-left: 0.7rem; border-left: 1px solid var(--rule); }
.prop-info h1 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); line-height: 1.15; }
.prop-info .zone { font-size: 1rem; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
.prop-info .zone svg { width: 16px; height: 16px; color: var(--gold); }
.prop-price-card { background: var(--navy); color: var(--cream); padding: 2rem; }
.prop-price-card .label { font-size: 11px; letter-spacing: 0.15em; color: var(--gold-light); text-transform: uppercase; margin-bottom: 0.5rem; font-weight: 600; }
.prop-price-card .price { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 500; line-height: 1.1; }
.prop-price-card .price small { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em; color: rgba(245, 240, 234, 0.6); display: block; margin-top: 0.5rem; text-transform: uppercase; font-weight: 600; }
.specs-block { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
@media (min-width: 540px) { .specs-block { grid-template-columns: repeat(3, 1fr); } }
.specs-block .spec { background: var(--white); padding: 1.25rem 1rem; text-align: center; }
.specs-block .spec .val { font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); font-weight: 500; line-height: 1; margin-bottom: 0.4rem; display: block; }
.specs-block .spec .lbl { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.prop-description { margin-top: 2rem; }
.prop-description h2 { font-size: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--rule); }
.prop-description p { font-size: 1rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 1rem; }
.prop-description ul { list-style: none; display: grid; grid-template-columns: 1fr; gap: 0.65rem; margin: 1.5rem 0; }
@media (min-width: 600px) { .prop-description ul { grid-template-columns: repeat(2, 1fr); } }
.prop-description ul li { padding-left: 1.5rem; position: relative; font-size: 14.5px; color: var(--ink); line-height: 1.55; }
.prop-description ul li::before { content: '◆'; position: absolute; left: 0; top: 7px; color: var(--gold); font-size: 9px; }
.advisor-mini { background: var(--white); border: 1px solid var(--rule); padding: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.advisor-mini .row { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; }
.advisor-mini .avatar { width: 56px; height: 56px; background: var(--cream); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.5rem; color: var(--navy); border: 1px solid var(--rule); }
.advisor-mini .name { font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); line-height: 1.1; margin-bottom: 0.25rem; }
.advisor-mini .label-asesor { font-size: 10px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; font-weight: 600; }
.advisor-mini .actions { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.advisor-mini .btn-wa, .advisor-mini .btn-ghost { width: 100%; justify-content: center; }
.fade-up { opacity: 0; transform: translateY(20px); transition: all 0.8s cubic-bezier(.2,.6,.2,1); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
