:root {
    --ventals-bg: #f5f3ee;
    --ventals-surface: #ffffff;
    --ventals-surface-soft: #faf8f4;
    --ventals-text: #1f2937;
    --ventals-muted: #6b7280;
    --ventals-line: #e5e7eb;
    --ventals-accent: #111827;
    --ventals-accent-2: #16a34a;
    --ventals-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
    --ventals-radius: 18px;
    --ventals-max: 1200px;
}

* {
    box-sizing: border-box;
}

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

.ventals-page {
    background: var(--ventals-bg);
    color: var(--ventals-text);
    padding-bottom: 3.5rem;
}

.ventals-container {
    max-width: var(--ventals-max);
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
}

/* =========================
   HERO
   ========================= */

   .ventals-hero {
    padding: 28px 0 18px;
}

.ventals-hero__content {
    max-width: 760px;
}

.ventals-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ventals-muted);
}

.ventals-title,
.ventals-hero h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ventals-accent);
}

.ventals-intro {
    max-width: 760px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: var(--ventals-muted);
}

/* =========================
   3VOR HERO
   ========================= */

   .threevor-hero {
    padding: 10px 0 26px;
}

.threevor-hero-card {
    position: relative;
    min-height: 460px;
    border-radius: 28px;
    overflow: hidden;
    background:
    linear-gradient(
        90deg,
        rgba(10, 10, 25, 0.88),
        rgba(10, 10, 25, 0.42)
    ),
    url("../img/3vor-banner.png") center center / cover no-repeat,
    #050510;
    display: flex;
    align-items: center;
    padding: 42px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.threevor-hero-content {
    max-width: 620px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.threevor-hero-content h2 {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.threevor-line {
    display: block;
}

.threevor-line-top {
    margin-bottom: 16px;
}

.threevor-highlight {
    color: #a855f7;
}

.threevor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    background: #7c3aed;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.threevor-btn:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}

/* =========================
   LISTADO
   ========================= */

   .ventals-listing {
    padding: 12px 0 28px;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.property-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--ventals-surface);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--ventals-radius);
    overflow: hidden;
    box-shadow: var(--ventals-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.property-card:hover {
    transform: translateY(-2px);
    border-color: rgba(209, 213, 219, 0.95);
    box-shadow: 0 16px 34px rgba(17, 24, 39, 0.1);
}

.property-card-featured {
    border-color: rgba(243, 194, 69, 0.55);
}

.property-featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f3c245;
    color: #111827;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.property-card-image {
    display: block;
    text-decoration: none;
    background: #e5e7eb;
    overflow: hidden;
}

.property-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.property-card:hover .property-card-image img {
    transform: scale(1.02);
}

.property-card-placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ventals-muted);
    background: #ececec;
    font-size: 15px;
    font-weight: 600;
}

.property-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.property-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    color: var(--ventals-accent);
}

.property-card-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--ventals-muted);
}

.property-card-type {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--ventals-surface-soft);
    border: 1px solid var(--ventals-line);
    color: var(--ventals-muted);
    font-size: 12px;
    font-weight: 700;
}

.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.property-tags span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    background: #eef2f7;
    color: #1f2937;
    border: 1px solid rgba(229, 231, 235, 0.9);
    font-size: 12px;
    line-height: 1;
    padding: 7px 10px;
    border-radius: 999px;
    font-weight: 600;
}

.property-card-title {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
}

.property-card-title a {
    text-decoration: none;
    color: var(--ventals-text);
}

.property-card-title a:hover {
    opacity: 0.86;
}

.property-card-location {
    margin-bottom: 12px;
    color: var(--ventals-muted);
    font-size: 15px;
    line-height: 1.5;
}

.property-card-text {
    margin: 0 0 18px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 15px;
}

.property-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.property-card-meta span {
    background: var(--ventals-surface-soft);
    border: 1px solid var(--ventals-line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.2;
    color: var(--ventals-text);
}

.property-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    min-height: 46px;
    text-decoration: none;
    background: var(--ventals-accent);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.property-card-cta:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

/* =========================
   BLOQUE DE CONFIANZA
   ========================= */

   .ventals-trust {
    padding: 12px 0 28px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.trust-card {
    background: var(--ventals-surface);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--ventals-radius);
    box-shadow: var(--ventals-shadow);
    padding: 20px 18px;
}

.trust-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.3;
    color: var(--ventals-accent);
}

.trust-card p {
    margin: 0;
    color: var(--ventals-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* =========================
   CTA FINAL
   ========================= */

   .ventals-cta {
    padding: 8px 0 0;
}

.ventals-cta-box {
    background: var(--ventals-surface);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--ventals-radius);
    box-shadow: var(--ventals-shadow);
    padding: 26px 18px;
    text-align: center;
}

.ventals-cta-box h2 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ventals-accent);
}

.ventals-cta-box p {
    max-width: 720px;
    margin: 0 auto 18px;
    color: var(--ventals-muted);
    line-height: 1.7;
    font-size: 15px;
}

.ventals-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    justify-content: center;
    max-width: 320px;
    margin: 0 auto;
}

.ventals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.ventals-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.ventals-btn-whatsapp {
    background: var(--ventals-accent-2);
    color: #ffffff;
}

.ventals-btn-call {
    background: var(--ventals-accent);
    color: #ffffff;
}

/* =========================
   EMPTY STATE
   ========================= */

   .empty-state {
    background: var(--ventals-surface);
    border: 1px solid rgba(229, 231, 235, 0.85);
    border-radius: var(--ventals-radius);
    box-shadow: var(--ventals-shadow);
    padding: 28px 18px;
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.2;
    color: var(--ventals-accent);
}

.empty-state p {
    margin: 0;
    color: var(--ventals-muted);
    line-height: 1.7;
}

.empty-state-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin-top: 14px;
    text-decoration: none;
    background: var(--ventals-accent);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
}

/* =========================
   TABLET
   ========================= */

   @media (min-width: 768px) {
    .ventals-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ventals-page {
        padding-bottom: 4rem;
    }

    .ventals-hero {
        padding: 40px 0 24px;
    }

    .ventals-title,
    .ventals-hero h1 {
        margin-bottom: 14px;
        font-size: 34px;
    }

    .ventals-intro {
        font-size: 17px;
    }

    .ventals-listing {
        padding: 14px 0 32px;
    }

    .properties-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .property-card-body {
        padding: 20px;
    }

    .property-card-price {
        font-size: 26px;
    }

    .property-card-title {
        font-size: 22px;
    }

    .property-featured-badge {
        top: 12px;
        left: 12px;
        font-size: 12px;
        padding: 7px 11px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .trust-card {
        padding: 22px;
    }

    .ventals-cta-box {
        padding: 30px 22px;
    }

    .ventals-cta-box h2 {
        font-size: 28px;
    }

    .ventals-cta-box p {
        font-size: 16px;
    }

    .ventals-cta-actions {
        flex-direction: row;
        align-items: center;
        max-width: none;
    }
}

/* =========================
   DESKTOP
   ========================= */

   @media (min-width: 1024px) {
    .ventals-page {
        padding-bottom: 4.5rem;
    }

    .ventals-hero {
        padding: 48px 0 26px;
    }

    .ventals-title,
    .ventals-hero h1 {
        font-size: 40px;
    }

    .ventals-intro {
        font-size: 18px;
    }

    .threevor-hero {
        padding: 16px 0 34px;
    }

    .threevor-hero-card {
        min-height: 500px;
        padding: 52px;
    }

    .threevor-hero-content h2 {
        font-size: 48px;
    }

    .properties-grid {
        gap: 26px;
    }

    .property-card-body {
        padding: 22px;
    }

    .property-card-price {
        font-size: 28px;
    }

    .property-card-title {
        font-size: 24px;
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
    }

    .trust-card {
        padding: 24px;
    }

    .ventals-cta {
        padding-top: 10px;
    }

    .ventals-cta-box {
        padding: 34px 24px;
    }

    .ventals-cta-box h2 {
        font-size: 30px;
    }

    .empty-state {
        padding: 32px 24px;
    }
}

/* =========================
   MOBILE
   ========================= */

   @media (max-width: 767px) {
    .threevor-hero {
        padding: 12px 0 24px;
    }

    .threevor-hero-card {
        min-height: 360px;
        padding: 24px;
        border-radius: 22px;
        align-items: flex-end;
        background:
        linear-gradient(
            180deg,
            rgba(10, 10, 25, 0.12),
            rgba(10, 10, 25, 0.86)
        ),
        url("../img/3vor-banner.png") center center / cover no-repeat,
        #050510;
    }

    .threevor-hero-content h2 {
        margin-bottom: 18px;
        font-size: 28px;
        line-height: 1.12;
    }

    .threevor-line-top {
        margin-bottom: 10px;
    }

    .threevor-btn {
        padding: 12px 20px;
    }
}

