/* =============================================
   VIVENTA PLAZA - Dedicated Landing Page Styles
   Color palette from brochure:
   - Dark green: #283618
   - Olive green: #606c38
   - Orange (brand): #C87521
   - Cream/Light: #FAF6F0
   ============================================= */

:root {
    --vp-green: #283618;
    --vp-green-light: #606c38;
    --vp-orange: #C87521;
    --vp-orange-light: #d4893a;
    --vp-cream: #FAF6F0;
    --vp-white: #ffffff;
    --vp-dark: #1a2410;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--vp-green);
    overflow-x: hidden;
}

/* Prevent horizontal overflow from watermarks and absolute elements */
section, .vp-section {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--vp-green);
}

/* ── NAVBAR ── */
.vp-navbar {
    background: transparent !important;
    transition: all 0.4s ease;
    padding: 15px 0;
    z-index: 1050;
}

.vp-navbar.scrolled {
    background: var(--vp-green) !important;
    padding: 0px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.vp-navbar .navbar-brand img {
    height: 70px;
    transition: height 0.3s ease;
}

.vp-navbar.scrolled .navbar-brand img {
    height: 75px;
}

.vp-navbar .nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
}

.vp-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--vp-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.vp-navbar .nav-link:hover::after,
.vp-navbar .nav-link.active::after {
    width: 100%;
}

.vp-navbar .nav-link:hover {
    color: var(--vp-orange) !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.5) !important;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

/* ── HERO SECTION ── */
.vp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 100px;
}

.vp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.vp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(12,22,11,0.95) 0%,
        rgba(12,22,11,0.85) 35%,
        rgba(12,22,11,0.75) 55%,
        rgba(12,22,11,0.98) 100%);
    z-index: 1;
}

.vp-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 700Q200 650 400 700T800 750M0 600Q150 550 350 620T800 680M0 500Q250 450 450 550T800 600M0 400Q300 350 500 480T800 520M0 300Q180 250 380 350T800 420M0 200Q200 150 450 250T800 320' fill='none' stroke='white' stroke-opacity='0.06' stroke-width='1'/%3E%3C/svg%3E");
    background-size: cover;
    pointer-events: none;
}

.vp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.vp-hero-logo {
    width: 180px;
    margin-bottom: 30px;
    animation: vpFadeDown 1s ease-out;
}

.vp-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    animation: vpFadeUp 1s ease-out 0.2s both;
}

.vp-hero h1 span {
    color: var(--vp-orange);
}

.vp-hero .vp-hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 35px;
    animation: vpFadeUp 1s ease-out 0.4s both;
}

.vp-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.vp-btn-orange {
    background: var(--vp-orange);
    color: #fff;
}

.vp-btn-orange:hover {
    background: #a8601a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200,117,33,0.4);
}

.vp-btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    margin-left: 15px;
}

.vp-btn-outline:hover {
    background: #fff;
    color: var(--vp-green);
}

.vp-hero-buttons {
    animation: vpFadeUp 1s ease-out 0.6s both;
}

/* ── SECTION COMMON ── */
.vp-section {
    padding: 100px 0;
    position: relative;
}

.vp-section-cream {
    background: var(--vp-cream);
}

.vp-section-green {
    background: var(--vp-green);
    color: #fff;
}

.vp-section-green h2,
.vp-section-green h3,
.vp-section-green h4 {
    color: #fff;
}

.vp-section-title {
    font-size: 2.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.vp-section-title span {
    color: var(--vp-orange);
}

.vp-section-subtitle {
    font-size: 1.15rem;
    color: var(--vp-green-light);
    margin-bottom: 50px;
    max-width: 600px;
}

.vp-section-green .vp-section-subtitle {
    color: rgba(255,255,255,0.8);
}

.vp-divider {
    width: 60px;
    height: 4px;
    background: var(--vp-orange);
    border: none;
    margin: 20px 0 30px;
}

.vp-divider-center {
    margin-left: auto;
    margin-right: auto;
}

/* ── LOGO WATERMARK ── */
.vp-watermark {
    position: absolute;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.vp-watermark-right {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
}

.vp-watermark-left {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
}

/* ── INVESTMENT INTRO ── */
.vp-intro-card {
    background: var(--vp-white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-top: 5px solid var(--vp-orange);
    text-align: center;
    max-width: 800px;
    margin: -60px auto 0;
    position: relative;
    z-index: 10;
}

.vp-intro-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.vp-intro-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.vp-intro-highlight {
    font-weight: 700;
    color: var(--vp-orange);
}

/* ── LOCATION SECTION ── */
.vp-location-address {
    background: var(--vp-green);
    color: #fff;
    border-radius: 15px;
    padding: 30px 35px;
    margin-bottom: 30px;
}

.vp-location-address h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.vp-location-address p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 1rem;
}

.vp-location-address i {
    color: var(--vp-orange);
    font-size: 1.4rem;
    margin-right: 12px;
}

.vp-nearby-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    background: var(--vp-white);
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vp-nearby-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

/* Map sticky + scrollable list layout */
.vp-map-sticky {
    position: sticky;
    top: 90px;
    height: 550px;
}

.vp-map-sticky .vp-map-wrapper {
    height: 100%;
}

.vp-nearby-scroll {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 8px;
}

.vp-nearby-scroll::-webkit-scrollbar {
    width: 5px;
}

.vp-nearby-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.vp-nearby-scroll::-webkit-scrollbar-thumb {
    background: var(--vp-orange);
    border-radius: 10px;
}

.vp-nearby-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--vp-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--vp-orange);
    font-size: 1.3rem;
}

.vp-nearby-item strong {
    display: block;
    font-size: 0.95rem;
}

.vp-nearby-item span {
    font-size: 0.85rem;
    color: #888;
}

.vp-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    min-height: 450px;
    z-index: 1;
}

/* Leaflet marker styles */
.vp-marker-dot {
    width: 32px;
    height: 32px;
    background: var(--vp-green);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.vp-marker-dot i {
    color: #fff;
    font-size: 12px;
}

.vp-marker-dot.vp-marker-active {
    width: 42px;
    height: 42px;
    background: var(--vp-orange);
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(200,117,33,0.5);
    transform: scale(1.1);
}

.vp-marker-dot.vp-marker-active i {
    font-size: 15px;
}

/* Map warm beige tone (brochure style) */
/* Leaflet map clean style */

/* Leaflet popup custom */
.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15) !important;
    font-family: 'Montserrat', sans-serif !important;
}

.leaflet-popup-content {
    margin: 10px 14px !important;
    font-size: 0.85rem !important;
}

/* List item highlight on marker click */
.vp-nearby-highlight {
    background: rgba(200,117,33,0.12) !important;
    border-left: 4px solid var(--vp-orange);
    transition: all 0.3s ease;
}

/* List item hover state enhancement */
.vp-nearby-item[data-marker] {
    cursor: pointer;
}

/* ── BUILDING SPECS ── */
.vp-specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.vp-spec-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s, background 0.3s;
}

.vp-spec-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.12);
}

.vp-spec-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--vp-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.vp-spec-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.vp-spec-sublabel {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
}

.vp-building-img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    width: 100%;
    max-height: 800px;
    object-fit: cover;
    object-position: bottom;
}

/* ── PRECIO VIS ── */
.precio-underline {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.precio-vis-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vp-orange-light);
    padding-left: 20px;
    position: relative;
}

.precio-vis-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: var(--vp-orange);
}

.precio-main {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
}

.precio-cifra-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
}

.precio-cifra {
    font-size: clamp(56px, 8vw, 90px);
    font-weight: 900;
    color: var(--vp-orange);
    letter-spacing: -3px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.precio-cifra::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -4px;
    right: -4px;
    height: 18px;
    background: rgba(200, 117, 33, 0.12);
    z-index: -1;
}

.precio-barra-decorativa {
    height: 5px;
    background: var(--vp-orange);
    width: 100%;
    margin-top: 4px;
    border-radius: 3px;
}

.precio-texto-lateral {
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
    gap: 2px;
}

.precio-unidad {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--vp-orange);
    letter-spacing: 2px;
    line-height: 1;
}

.precio-desc {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 246, 240, 0.6);
}

/* ── AMENITIES INTERACTIVE VIEWER ── */
.vp-viewer-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.vp-viewer-tab {
    padding: 10px 20px;
    border: 2px solid var(--vp-green);
    border-radius: 50px;
    background: transparent;
    color: var(--vp-green);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.vp-viewer-tab i { margin-right: 6px; }

.vp-viewer-tab:hover {
    background: var(--vp-green);
    color: #fff;
}

.vp-viewer-tab.active {
    background: var(--vp-green);
    color: #fff;
}

.vp-viewer-container {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.vp-viewer-img-wrap {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 65vh;
    min-height: 420px;
    max-height: 680px;
    background: #1a2410;
}

.vp-viewer-group {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.vp-viewer-group.active {
    opacity: 1;
    pointer-events: auto;
}

.vp-viewer-group img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform-origin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1);
    transform-origin: center center;
}

/* Hotspots */
.vp-hotspot {
    position: absolute;
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vp-orange);
    border: 3px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.vp-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 6px 25px rgba(200, 117, 33, 0.5);
}

.vp-hotspot.active {
    background: var(--vp-green);
    border-color: var(--vp-orange);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Pulse animation on hotspots */
.vp-hotspot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--vp-orange);
    animation: vp-pulse 2s ease-out infinite;
}

.vp-hotspot.active .vp-hotspot-pulse {
    border-color: var(--vp-green);
}

@keyframes vp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

/* Info panel */
.vp-viewer-info {
    width: 280px;
    flex-shrink: 0;
    background: var(--vp-green);
    border-radius: 16px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.vp-viewer-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--vp-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.vp-viewer-info-title {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}

.vp-viewer-info-desc {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0;
}

.vp-viewer-info-loc {
    font-size: 0.8rem;
    color: var(--vp-orange);
    font-weight: 600;
}

.vp-viewer-reset {
    margin-top: auto;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.vp-viewer-reset:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ── TECHNOLOGY ── */
.vp-tech-section {
    background: #f9f7f4;
    position: relative;
    overflow: hidden;
}

.vp-tech-section .vp-section-title {
    color: var(--vp-green);
}

.vp-tech-section .vp-section-subtitle {
    color: #666;
}

.vp-tech-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 40px 30px 35px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.vp-tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--vp-orange), var(--vp-orange-light));
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vp-tech-card:hover {
    transform: translateY(-10px);
    background: #fff;
    border-color: rgba(200, 117, 33, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 0 30px rgba(200, 117, 33, 0.08);
}

.vp-tech-card:hover::before {
    opacity: 1;
}

.vp-tech-card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: color 0.4s ease;
}

.vp-tech-card:hover .vp-tech-card-number {
    color: rgba(200, 117, 33, 0.15);
}

.vp-tech-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vp-orange), var(--vp-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 10px 30px rgba(200, 117, 33, 0.3);
    transition: all 0.4s ease;
}

.vp-tech-card:hover .vp-tech-card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(200, 117, 33, 0.45);
}

.vp-tech-card-title {
    color: var(--vp-green);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.vp-tech-card-desc {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.vp-tech-card-line {
    width: 40px;
    height: 3px;
    background: var(--vp-orange);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.4s ease;
}

.vp-tech-card:hover .vp-tech-card-line {
    opacity: 1;
    transform: scaleX(1);
}

/* ── APARTMENT MODELS ── */
.vp-model-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.vp-model-tab {
    padding: 12px 30px;
    border-radius: 50px;
    border: 2px solid var(--vp-green);
    background: transparent;
    color: var(--vp-green);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.vp-model-tab:hover,
.vp-model-tab.active {
    background: var(--vp-green);
    color: #fff;
}

.vp-model-panel {
    display: none;
}

.vp-model-panel.active {
    display: block;
    animation: vpFadeUp 0.5s ease-out;
}

.vp-model-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    background: var(--vp-cream);
    padding: 20px;
}

.vp-model-img-wrapper img {
    width: 100%;
    border-radius: 12px;
}

.vp-model-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--vp-orange);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.vp-model-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.vp-model-spec {
    background: var(--vp-cream);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.vp-model-spec-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--vp-orange);
    line-height: 1;
}

.vp-model-spec-label {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Toggle acabados/obra gris */
.vp-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.vp-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--vp-green);
}

.vp-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    appearance: none;
    background: #ccc;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s;
    outline: none;
}

.vp-toggle:checked {
    background: var(--vp-orange);
}

.vp-toggle::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.vp-toggle:checked::before {
    transform: translateX(24px);
}

/* ── FLOOR PLANS ── */
.vp-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.vp-plan-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    background: #fff;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.vp-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.vp-plan-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    padding: 15px;
    background: var(--vp-cream);
}

.vp-plan-card h5 {
    padding: 15px 20px;
    font-size: 0.95rem;
    margin: 0;
    text-align: center;
    background: #fff;
}

/* ── 3D TOUR ── */
.vp-tour-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    position: relative;
}

.vp-tour-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ── CONTACT ── */
.vp-contact-form {
    background: var(--vp-white);
    padding: 45px 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.vp-contact-form .form-control,
.vp-contact-form .form-select {
    border-radius: 12px;
    border: 2px solid #e9ecef;
    padding: 14px 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.vp-contact-form .form-control:focus,
.vp-contact-form .form-select:focus {
    border-color: var(--vp-orange);
    box-shadow: 0 0 0 3px rgba(200,117,33,0.15);
}

.vp-contact-info-card {
    background: var(--vp-green);
    border-radius: 20px;
    padding: 45px 40px;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-contact-info-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.vp-contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.vp-contact-info-item i {
    font-size: 1.3rem;
    color: var(--vp-orange);
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.vp-contact-info-item span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

.vp-contact-info-item strong {
    display: block;
    font-size: 1rem;
    color: #fff;
}

/* ── FOOTER ── */
.vp-footer {
    background: var(--vp-dark);
    color: rgba(255,255,255,0.7);
}

.vp-footer-cta {
    background: var(--vp-green);
    padding: 70px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vp-footer-cta h3 {
    color: #fff;
    font-size: 2rem;
    margin: 0;
}

.vp-footer-main {
    padding: 60px 0 40px;
}

.vp-footer-heading {
    color: var(--vp-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.vp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vp-footer-links li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.vp-footer-links li strong {
    color: rgba(255,255,255,0.8);
}

.vp-footer-links a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.3s;
}

.vp-footer-links a:hover {
    color: var(--vp-orange);
}

.vp-footer-logos {
    margin-top: 5px;
}

.vp-footer-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.vp-footer-logos img:hover {
    opacity: 1;
}

.vp-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.vp-footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* ── ALIADOS SLIDER ── */
.vp-aliados-track {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.vp-aliados-slider {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: vpSlideLogos 20s linear infinite;
    width: max-content;
}

.vp-aliados-slider img {
    height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s;
}

.vp-aliados-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes vpSlideLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── WHATSAPP FLOAT ── */
.vp-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s;
}

.vp-whatsapp:hover {
    background: #1ebe57;
    color: #fff;
    transform: scale(1.1);
}

/* ── ANIMATIONS ── */
@keyframes vpFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vpFadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes vpFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scroll animations */
.vp-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.vp-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── MODAL FULLSCREEN PLAN ── */
.vp-modal-plan .modal-content {
    border: none;
    border-radius: 20px;
}

.vp-modal-plan .modal-body {
    padding: 0;
}

.vp-modal-plan .modal-body img {
    width: 100%;
    border-radius: 0 0 20px 20px;
}

.vp-modal-plan .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background-color: #fff;
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .vp-hero h1 {
        font-size: 2.5rem;
    }

    .vp-section-title {
        font-size: 2.2rem;
    }

    .vp-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vp-section {
        padding: 70px 0;
    }

    .vp-intro-card {
        margin: 30px 20px 0;
        padding: 35px 25px;
    }

    .vp-map-sticky {
        position: relative;
        top: 0;
        height: 400px;
        margin-bottom: 20px;
    }

    .vp-nearby-scroll {
        max-height: none;
        overflow-y: visible;
    }

    .vp-viewer-container {
        flex-direction: column;
    }

    .vp-viewer-info {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px 16px;
        padding: 20px;
    }

    .vp-viewer-info-title { font-size: 1.2rem; }
    .vp-viewer-info-desc { flex-basis: 100%; }
    .vp-viewer-reset { margin-top: 0; }
}

@media (max-width: 767px) {
    .vp-hero h1 {
        font-size: 2rem;
    }

    .vp-hero-logo {
        width: 130px;
    }

    .vp-section-title {
        font-size: 1.8rem;
    }

    .vp-specs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .vp-spec-number {
        font-size: 2.5rem;
    }

    .vp-btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .vp-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .vp-viewer-img-wrap {
        height: 50vh;
        min-height: 300px;
    }

    .vp-viewer-tabs {
        gap: 5px;
    }

    .vp-viewer-tab {
        padding: 8px 12px;
        font-size: 0.72rem;
    }

    .vp-viewer-tab span { display: none; }

    .vp-hotspot {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }


    .vp-contact-form,
    .vp-contact-info-card {
        padding: 30px 25px;
    }

    .vp-model-specs {
        grid-template-columns: 1fr;
    }

    .vp-tour-wrapper iframe {
        height: 350px;
    }

    .vp-map-wrapper {
        min-height: 300px;
    }

    .vp-map-wrapper iframe {
        min-height: 300px;
    }

    .vp-tech-card {
        padding: 30px 22px 28px;
    }

    .vp-tech-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.5rem;
    }

    .vp-tech-card-number {
        font-size: 2.5rem;
    }
}
