/* ===== ATHENDRIX PROPTECH - PÁGINA "PRÓXIMAMENTE" ===== */

.proptech-body {
    background: radial-gradient(ellipse at top, #10172a 0%, #0b1120 60%, #05070d 100%);
    color: #e2e8f0;
    min-height: 100vh;
}
.proptech-body::before,
.proptech-body::after { display: none; } /* apaga la textura pastel del sitio base */

/* Navbar */
.navbar-proptech {
    background: rgba(11, 17, 32, 0.7);
    border: 1px solid rgba(6, 182, 212, 0.2);
}
.btn-back-home {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}
.btn-back-home:hover { color: #22d3ee; }

/* Hero */
.proptech-hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    text-align: center;
}
.proptech-hero-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(126, 34, 206, 0.22) 0%, transparent 45%);
    pointer-events: none;
}
.proptech-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proptech-hero-logo-img {
    max-width: 420px;
    width: 75%;
    height: auto;
    margin: 18px 0 14px;
    filter: drop-shadow(0 0 30px rgba(34, 211, 238, 0.35));
}

.proptech-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 18px;
}

.proptech-hero-desc {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 28px;
}

.proptech-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.35);
    color: #67e8f9;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 36px;
}
.status-dot {
    width: 9px; height: 9px;
    background: #22d3ee;
    border-radius: 50%;
    animation: pulseDot 1.6s infinite ease-in-out;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.6); }
    50% { box-shadow: 0 0 0 6px rgba(34, 211, 238, 0); }
}

.proptech-features-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
    list-style: none;
    margin-bottom: 44px;
}
.proptech-features-hero li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: #e2e8f0;
}
.proptech-features-hero li i { color: #22d3ee; }

/* Formulario de lista de espera */
.waitlist-form {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    width: 100%;
    max-width: 640px;
    margin-bottom: 14px;
}
.waitlist-form input {
    flex: 1 1 180px;
    padding: 14px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s ease;
}
.waitlist-form input::placeholder { color: #64748b; }
.waitlist-form input:focus { border-color: #22d3ee; }
.waitlist-form .btn-proptech-cta {
    flex: 1 1 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    color: white;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-family: var(--font-body);
}

.proptech-footer .footer-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255,255,255,0.08); }
.proptech-footer p { color: #64748b; }

@media (max-width: 600px) {
    .proptech-hero { padding: 150px 0 70px; }
    .proptech-hero-logo-img { max-width: 260px; width: 85%; }
    .waitlist-form input { flex: 1 1 100%; }
}