/* ====== GLOBALS ====== */
:root {
    --inmo-primary: #121212;
    --inmo-surface: #ffffff;
    --inmo-text: #333333;
    --inmo-text-light: #666666;
    --inmo-border: #e2e8f0;
    --inmo-blue: #007A8D;
    --inmo-green: #10b981;
    --inmo-radius: 12px;
    --inmo-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.inmo-lock-icon {
    display: none !important;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
.inmoinvest-single-wrapper,
.inmoinvest-wrapper {
    font-family: 'Gotham Light', 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #1a202c;
    line-height: 1.6;
    box-sizing: border-box;
    background-color: #ffffff;
    /* Light background for the whole page */
}

.inmoinvest-single-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 6%;
}

.inmoinvest-single-wrapper *,
.inmoinvest-single-wrapper *::before,
.inmoinvest-single-wrapper *::after,
.inmoinvest-wrapper *,
.inmoinvest-wrapper *::before,
.inmoinvest-wrapper *::after {
    box-sizing: inherit;
}

/* ==========================================================================
      Header Area (Title, Location, ID)
      ========================================================================== */
.inmoinvest-project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.inmoinvest-project-title-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.inmoinvest-project-icon {
    width: 48px;
    height: 48px;
    background-color: #1B474F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.inmoinvest-project-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.inmoinvest-project-title-container h1 {
    margin: 0 0 4px 0 !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.2 !important;
}

.inmoinvest-project-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.inmoinvest-project-location {
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #f3f4f6;
    padding: 4px 10px;
    border-radius: 999px;
}

.inmoinvest-project-id {
    color: #6b7280;
}

.inmoinvest-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: #568B94;
    color: #ffffff;
    text-decoration: none !important;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border: none;
}

.inmoinvest-back-btn:hover {
    background-color: #46737a;
    color: #ffffff;
}

/* ==========================================================================
      Navigation Tabs
      ========================================================================== */
.inmoinvest-project-tabs {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    background-color: white;
    padding: 8px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.inmoinvest-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #6b7280;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid transparent;
    /* Ready for active state */
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.inmoinvest-tab svg {
    width: 18px;
    height: 18px;
    fill: none;
    /* Changed from currentColor to none for stroke-based icons */
    stroke: currentColor;
    stroke-width: 1.5;
    /* Made icons thinner */
}

.inmoinvest-tab:hover,
.inmoinvest-tab.active {
    color: #1B474F;
}

.inmoinvest-tab.active {
    border-bottom-color: #1B474F;
}

/* Active Tab Pill Style (like in the image) */
.inmoinvest-tab.active-pill {
    background-color: #1B474F;
    color: white;
    border-radius: 8px;
    border-bottom: none;
}

/* ==========================================================================
      Main Grid Layout
      ========================================================================== */
.inmoinvest-project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .inmoinvest-project-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
      Left Column (Main Content)
      ========================================================================== */
.inmoinvest-project-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.inmoinvest-project-hero {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Aspect ratio fix for images */
    aspect-ratio: 16 / 9;
    background-color: #e2e8f0;
    position: relative;
    /* For the swiper arrows */
}

.inmoinvest-project-hero .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.inmoinvest-project-hero .swiper-wrapper {
    height: 100%;
}

.inmo-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    /* Optional: fallback min-height if aspect ratio isn't supported */
    min-height: 400px;
}

.inmoinvest-project-hero:hover .inmo-hero-bg {
    transform: scale(1.05);
}

.inmoinvest-project-hero .swiper-button-next,
.inmoinvest-project-hero .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.inmoinvest-project-hero .swiper-button-next:after,
.inmoinvest-project-hero .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Content splitting rows */
.inmoinvest-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
    /* Separation with swiper */
}

@media (max-width: 768px) {
    .inmoinvest-content-split {
        grid-template-columns: 1fr;
        margin-top: 24px;
        gap: 24px;
    }
}

/* Content Blocks */
.inmoinvest-block-strategy,
.inmoinvest-block-ai {
    padding: 0;
}

.inmoinvest-block-ai {
    background-color: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.inmoinvest-block-strategy h2 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: #1B474F !important;
    margin: 0 0 16px 0 !important;
}

.inmoinvest-block-strategy p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.inmoinvest-ai-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 12px;
}

.inmoinvest-block-ai p {
    font-style: italic;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
      Right Column (Sidebar Cards)
      ========================================================================== */
.inmoinvest-project-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Financial Card (Dark Mode) */
.inmoinvest-card-financial {
    background-color: #0f172a;
    /* Dark slate */
    border-radius: 20px;
    padding: 32px 24px;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Decorative subtle arrow background */
.inmoinvest-card-financial::after {
    content: "↗";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    font-weight: 900;
    z-index: 0;
}

.inmoinvest-card-financial>* {
    position: relative;
    z-index: 1;
}

.inmoinvest-fin-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.inmoinvest-fin-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 4px;
    display: block;
}

.inmoinvest-fin-value-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin: 0;
}

.inmoinvest-fin-restante {
    text-align: right;
}

.inmoinvest-fin-restante .inmoinvest-fin-label {
    color: #64748b;
}

.inmoinvest-fin-restante-val {
    font-size: 1rem;
    font-weight: 700;
    color: #60a5fa;
    /* Light blue */
}

/* Progress Bar */
.inmoinvest-progress-container {
    height: 8px;
    background-color: #1e293b;
    border-radius: 999px;
    margin-bottom: 32px;
    overflow: hidden;
}

.inmoinvest-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 999px;
}

/* Financial Stats Row */
.inmoinvest-fin-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.inmoinvest-fin-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.inmoinvest-fin-stat-val.highlight {
    color: #34d399;
    font-size: 1.1rem;
    font-weight: 700;
}

.inmoinvest-fin-stat-val {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.inmoinvest-btn-invest {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background-color: #1B474F;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none !important;
    transition: background-color 0.2s, transform 0.1s;
    border: none;
    cursor: pointer;
}

.inmoinvest-btn-invest:hover {
    background-color: #123339;
    color: white;
}

.inmoinvest-btn-invest:active {
    transform: scale(0.98);
}

.inmoinvest-btn-invest svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Contact Card */
.inmoinvest-card-contact {
    background-color: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.inmoinvest-contact-icon {
    width: 48px;
    height: 48px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: #6b7280;
}

.inmoinvest-contact-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.inmoinvest-card-contact h3 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 8px 0 !important;
}

.inmoinvest-card-contact p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.inmoinvest-btn-contact {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 2px solid #e2e8f0;
    color: #374151;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none !important;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.inmoinvest-btn-contact:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
    color: #111827;
}

/* ==========================================================================
      Calendly Modal Styles (Dark Theme)
      ========================================================================== */
.inmoinvest-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999999 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.inmoinvest-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.inmoinvest-modal-content {
    background: #1B474F;
    /* Corporate green */
    border-radius: 24px;
    width: 90%;
    max-width: 1060px;
    height: 90vh;
    max-height: 800px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inmoinvest-modal-overlay.active .inmoinvest-modal-content {
    transform: translateY(0) scale(1);
}

.inmoinvest-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.inmoinvest-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Dark close button for the white invest form modal */
#inmoInvestModal .inmoinvest-modal-close {
    background: rgba(0, 0, 0, 0.06);
    color: #1B474F;
}

#inmoInvestModal .inmoinvest-modal-close:hover {
    background: rgba(0, 0, 0, 0.12);
}

.inmoinvest-modal-body {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* Target the calendly inline widget if present */
.inmoinvest-modal-body .calendly-inline-widget {
    height: 100% !important;
    width: 100% !important;
    min-width: 320px;
}

@media (max-width: 768px) {
    .inmoinvest-modal-content {
        width: 95%;
        height: 95vh;
        border-radius: 16px;
    }
}

/* ====== PROJECT GRID ====== */
.inmoinvest-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.inmo-project-card {
    background: var(--inmo-surface);
    border-radius: var(--inmo-radius);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    font-family: 'Gotham Light', 'Gotham', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.inmo-project-card.inmo-card-clickable {
    display: flex;
}

.inmo-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.inmo-project-card:hover .inmo-card-bg {
    transform: scale(1.05);
}

.inmo-card-header {
    height: 200px;
    position: relative;
    padding: 16px;
    overflow: hidden;
    /* Ensure border radius is applied so the image doesn't poke out */
    border-top-left-radius: var(--inmo-radius);
    border-top-right-radius: var(--inmo-radius);
}

.inmo-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

.inmo-card-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.inmo-badge-status-pill {
    background: white !important;
    color: var(--inmo-text) !important;
    border: none !important;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.inmo-badge-country {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    position: absolute;
    top: 186px;
    right: 20px;
    z-index: 10;
}

.inmo-badge-country img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inmo-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.inmo-project-title {
    margin: 0 0 12px 0 !important;
    font-size: 20px !important;
    font-weight: 500 !important;
    color: #1B474F !important;
    line-height: 1.3 !important;
}

.inmo-project-title strong,
.inmo-project-title b {
    font-weight: 600 !important;
}

.inmo-project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.inmo-tag {
    font-size: 11px;
    color: #475569;
    border: 1px solid #94a3b8;
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    background: transparent;
    position: relative;
}

.inmo-tag[data-tooltip] {
    cursor: help;
}

.inmo-tag[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background-color: #ffffff;
    color: #007A8D;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fadeInTooltip 0.2s forwards 0.1s;
    pointer-events: none;
}

.inmo-tag[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #ffffff;
    margin-top: -2px;
    z-index: 9999;
    opacity: 0;
    animation: fadeInTooltip 0.2s forwards 0.1s;
    pointer-events: none;
}

@keyframes fadeInTooltip {
    to {
        opacity: 1;
    }
}

.inmo-tag svg {
    width: 14px;
    height: 14px;
    margin-left: 4px;
    vertical-align: -3px;
    fill: currentColor;
}

/* Specific styling for the generated Equity/Deuda tag */
.inmo-tag.type-equity {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.inmo-tag.type-deuda {
    border-color: #1B474F;
    color: #1B474F;
}

.inmo-progress-container {
    margin-bottom: 24px;
}

.inmo-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
}

.inmo-progress-labels .financiado {
    color: var(--inmo-text-light);
}

.inmo-progress-labels .objetivo {
    color: var(--inmo-text-light);
    text-align: right;
}

.inmo-progress-bar {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-bottom: 8px;
}

.inmo-progress-fill {
    height: 100%;
    background: #007A8D;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 2px;
}

.inmo-progress-amounts {
    display: flex;
    justify-content: space-between;
    font-weight: 400;
    font-size: 18px;
    color: var(--inmo-primary);
    margin-top: 8px;
    font-family: 'Gotham', sans-serif;
}

.inmo-progress-amounts .target-amount {
    text-align: right;
}

.inmo-project-stats {
    list-style: none !important;
    margin: auto 0 0 0 !important;
    padding: 16px 0 0 0 !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
}

.inmo-project-stats li {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 13px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.inmo-project-stats .stat-label {
    color: var(--inmo-text-light);
}

.inmo-project-stats .stat-value {
    font-weight: 400;
    color: var(--inmo-primary);
    font-family: 'Gotham', sans-serif;
}


/* ====== SHOWCASE CAROUSEL ====== */
.inmoinvest-showcase-container {
    margin: 40px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.inmo-showcase-heading {
    margin-bottom: 24px;
}

.inmo-sc-title {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #121212 !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.5px;
}

.inmo-sc-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.inmoinvest-showcase-swiper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.inmo-showcase-slide-inner {
    height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px 50px;
}

.inmo-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.inmo-showcase-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.inmo-showcase-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    width: 100%;
}

.inmo-showcase-tags {
    display: flex;
    gap: 12px;
}

/* Glass Lock Icon for Showcase */
.inmo-showcase-lock {
    z-index: 10;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.inmo-showcase-tag {
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.inmo-showcase-tag.highlight {
    background: #9efcdd;
    color: #121212;
}

.inmo-showcase-tag.standard {
    background: rgba(0, 0, 0, 0.4);
    /* Darker glass for better readability */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inmo-showcase-main-text {
    max-width: 650px;
}

.inmo-showcase-title {
    font-size: 56px !important;
    font-weight: 800 !important;
    margin: 0 0 16px 0 !important;
    color: white !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px;
}

.inmo-showcase-desc {
    font-size: 17px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 40px 0;
    max-width: 500px;
}

.inmo-showcase-footer {
    display: flex;
    align-items: stretch;
    gap: 24px;
    flex-wrap: wrap;
}

.inmo-btn-view-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #121212 !important;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 14px;
    text-decoration: none !important;
    transition: transform 0.2s, background 0.2s;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.inmo-btn-view-project:hover {
    transform: translateY(-2px);
    background: #f8fafc;
}

.inmo-btn-line {
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 32px;
    height: 4px;
    background: #02788a;
    border-radius: 4px 4px 0 0;
}

.inmo-showcase-stats {
    display: flex;
    background: #02788a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 12px 0;
    align-items: center;
}

.inmo-stat-item {
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.inmo-stat-item.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.inmo-stat-item .stat-label {
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inmo-stat-item .stat-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.inmo-stat-item .text-green {
    color: #10b981;
}

.inmo-showcase-navigation {
    position: absolute;
    bottom: 60px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 16px;
}

.inmo-nav-btn {
    position: static !important;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    background: #0a1b1f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: white !important;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inmo-nav-btn:after {
    font-size: 14px !important;
    font-weight: 900;
}

.inmo-nav-btn:hover {
    background: #112d33;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .inmo-showcase-slide-inner {
        padding: 50px 30px;
    }

    .inmo-showcase-title {
        font-size: 42px !important;
    }

    .inmo-showcase-navigation {
        bottom: 50px;
        right: 30px;
    }
}

@media (max-width: 768px) {
    .inmo-showcase-slide-inner {
        padding: 40px 20px;
        height: auto;
        min-height: 600px;
    }

    .inmo-showcase-overlay {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.3) 100%);
    }

    .inmo-showcase-title {
        font-size: 36px !important;
        letter-spacing: -0.5px;
    }

    .inmo-showcase-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .inmo-showcase-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .inmo-btn-view-project {
        width: 100%;
        justify-content: center;
    }

    .inmo-btn-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .inmo-showcase-stats {
        width: 100%;
        justify-content: space-around;
        padding: 16px 0;
    }

    .inmo-showcase-navigation {
        display: none;
        /* Hide navigation on mobile */
    }

    /* Mobile adjustments for main project page */
    .inmoinvest-project-tabs {
        gap: 16px;
        padding: 12px;
        /* Allow horizontal scroll on mobile */
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px;
    }

    .inmoinvest-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .inmoinvest-project-hero {
        min-height: 250px;
    }

    .inmoinvest-block-strategy,
    .inmoinvest-block-ai {
        padding: 20px;
    }

    .inmoinvest-card-financial {
        padding: 24px 20px;
    }
}

/* --- TAB SECTIONS --- */
.inmoinvest-tab-section {
    animation: inmoFadeIn 0.3s ease;
}

@keyframes inmoFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- FINANZAS TAB --- */
.inmoinvest-finanzas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.inmoinvest-fin-metrics-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.inmoinvest-fin-metrics-card.blue-bg {
    background: #2563EB;
    color: white;
}

.inmoinvest-fin-metrics-card.dark-bg {
    background: #0F172A;
    color: white;
}

.inmoinvest-fin-metrics-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fin-metric-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.8;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.blue-bg .fin-metric-label,
.dark-bg .fin-metric-label {
    opacity: 0.7;
}

.fin-metric-value {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.fin-metric-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    align-self: flex-start;
}

.inmo-chart-card {
    min-height: 250px;
}

/* Bar Chart Simulation */
.inmo-bar-chart {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.inmo-bar-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.inmo-bar-label {
    width: 60px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.inmo-bar-track {
    flex-grow: 1;
    height: 24px;
    background: #f1f5f9;
    border-radius: 12px;
    overflow: visible;
    position: relative;
}

.inmo-bar-fill {
    height: 100%;
    border-radius: 12px;
}

.inmo-bar-fill.blue {
    background: #3b82f6;
}

.inmo-bar-fill.green {
    background: #10B981;
}

.tooltip-container:hover .tooltip-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tooltip-box {
    position: absolute;
    bottom: 110%;
    left: 100%;
    transform: translateX(-50%) translateY(5px);
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    z-index: 10;
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

/* --- SEGUIMIENTO TAB --- */
.inmoinvest-timeline {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.inmoinvest-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.inmoinvest-timeline-item {
    display: flex;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    gap: 20px;
    position: relative;
    z-index: 1;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.inmoinvest-timeline-item.active {
    border-color: #3b82f6;
    background: #f8fafc;
}

.inmo-timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

.inmoinvest-timeline-item.done .inmo-timeline-icon {
    background: #10b981;
}

.inmoinvest-timeline-item.active .inmo-timeline-icon {
    background: #3b82f6;
}

.inmo-timeline-icon svg {
    width: 20px;
    height: 20px;
}

.inmo-timeline-content {
    flex-grow: 1;
}

.inmo-timeline-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.inmo-timeline-content p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

.inmo-timeline-date {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 4px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

/* --- BOVEDA TAB --- */
.inmoinvest-boveda-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.inmo-blockchain-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #10b981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid #d1fae5;
}

.inmoinvest-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.inmoinvest-doc-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.inmoinvest-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-color: #3b82f6;
}

.inmo-doc-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #eff6ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inmo-doc-icon-box svg {
    width: 24px;
    height: 24px;
}

.inmo-doc-info {
    flex-grow: 1;
}

.inmo-doc-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
}

.inmo-doc-info span {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 600;
}

.inmo-doc-download {
    color: #cbd5e1;
    transition: color 0.2s;
}

.inmoinvest-doc-card:hover .inmo-doc-download {
    color: #3b82f6;
}

.inmo-doc-download svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .inmoinvest-finanzas-layout {
        grid-template-columns: 1fr;
    }

    .inmoinvest-timeline::before {
        left: 34px;
    }

    .inmoinvest-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .inmo-timeline-date {
        align-self: flex-start;
    }
}

/* ==========================================================================
   SINGLE PROJECT PAGE — MOBILE (≤768px)
   ========================================================================== */
@media (max-width: 768px) {

    /* Wrapper padding */
    .inmoinvest-single-wrapper {
        padding: 16px 16px 40px;
    }

    /* Header: stack title + back button vertically */
    .inmoinvest-project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 0;
        margin-bottom: 16px;
    }

    .inmoinvest-project-title-area {
        gap: 10px;
    }

    .inmoinvest-project-title-container h1 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
    }

    .inmoinvest-project-icon {
        width: 40px;
        height: 40px;
    }

    /* Hero: remove huge min-height on mobile */
    .inmo-hero-bg {
        min-height: 220px;
    }

    .inmoinvest-project-hero {
        aspect-ratio: 16 / 9;
    }

    /* Tabs: tighter gap, smaller font */
    .inmoinvest-project-tabs {
        gap: 4px;
        padding: 6px 10px;
        margin-bottom: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .inmoinvest-tab {
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 4px;
        white-space: nowrap;
    }

    .inmoinvest-tab svg {
        width: 14px;
        height: 14px;
    }

    /* Main grid: already 1 col at 900px, just reduce gap */
    .inmoinvest-project-grid {
        gap: 20px;
        margin-bottom: 32px;
    }

    /* Financial card: reduce internal padding */
    .inmoinvest-card-financial {
        padding: 20px 16px;
    }

    .inmoinvest-fin-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px 8px;
    }

    .inmoinvest-fin-stat-val {
        font-size: 0.95rem;
    }

    .inmoinvest-fin-stat-val.highlight {
        font-size: 1rem;
    }

    .inmoinvest-fin-label {
        font-size: 8px;
    }

    .inmoinvest-btn-invest {
        padding: 14px;
        font-size: 1rem;
    }

    /* Contact card */
    .inmoinvest-card-contact {
        padding: 20px 16px;
    }

    /* Content split: already 1 col at 768px via existing rule */
    .inmoinvest-content-split {
        gap: 16px;
    }

    /* Strategy & AI blocks */
    .inmoinvest-block-strategy,
    .inmoinvest-block-ai {
        padding: 16px;
    }
}

/* ==========================================================================
   IMPACTO TAB STYLES
   ========================================================================== */
.inmo-impact-wrapper {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.inmo-impact-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px dashed #f1f5f9;
}

.inmo-impact-icon-bg {
    width: 100px;
    height: 100px;
    background: #f0fdf4;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.inmo-impact-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.inmo-impact-title {
    margin: 0;
    font-size: 1.8rem;
    color: #1a202c;
    font-weight: 800;
}

.inmo-impact-tipo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    width: fit-content;
}

.inmo-impact-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.inmo-impact-metric {
    background: #f8fafc;
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #f1f5f9;
    text-align: center;
    align-items: center;
}

.inmo-impact-metric-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.inmo-impact-score-badge {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.inmo-impact-score-desc {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}

.inmo-impact-sdg-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.inmo-sdg-chip {
    background: #1B474F;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

.inmo-impact-desc {
    background: #f0fdfa;
    padding: 24px;
    border-radius: 16px;
    border-left: 6px solid #0d9488;
    margin-bottom: 32px;
}

.inmo-impact-desc h4 {
    margin: 0 0 12px;
    color: #0f766e;
    font-size: 1.1rem;
    font-weight: 800;
}

.inmo-impact-desc p {
    margin: 0;
    color: #334155;
    line-height: 1.6;
    font-size: 1rem;
}

.inmo-impact-disclaimer {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    align-items: flex-start;
}

.inmo-impact-disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .inmo-impact-wrapper {
        padding: 20px;
    }

    .inmo-impact-hero {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .inmo-impact-icon-bg {
        width: 80px;
        height: 80px;
    }

    .inmo-impact-title {
        font-size: 1.5rem;
    }

    .inmo-impact-tipo-badge {
        margin: 0 auto;
    }

    .inmo-impact-metrics {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ==========================================================================
   Elegant Project Lock Screen
   ========================================================================== */
.inmo-lock-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
    font-family: 'Gotham Light', 'Gotham', -apple-system, sans-serif;
}

.inmo-lock-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.7);
    transform: scale(1.1);
    z-index: 1;
}

.inmo-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.inmo-lock-card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    padding: 50px 40px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    color: white;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.inmo-lock-brand {
    margin-bottom: 40px;
}

.inmo-lock-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 32px;
}

.inmo-lock-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.inmo-lock-title {
    font-size: 32px !important;
    font-weight: 300 !important;
    color: #D5FEF0 !important;
    margin-bottom: 16px !important;
    letter-spacing: -0.5px;
    font-family: 'Gotham Light', sans-serif !important;
}

.inmo-lock-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0;
    font-family: 'Gotham Light', sans-serif;
}

.inmo-lock-form-container {
    margin-bottom: 32px;
}

.inmo-lock-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px 20px;
    color: white !important;
    /* Visible text/code */
    font-size: 16px;
    margin-bottom: 16px;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}

.inmo-lock-input:focus {
    outline: none;
    border-color: #02788A;
    background: rgba(255, 255, 255, 0.12);
}

.inmo-lock-input::placeholder {
    color: rgba(255, 255, 255, 0.9) !important;
    /* White placeholder */
    opacity: 1;
}

.inmo-lock-submit-btn {
    width: 100%;
    background: #02788A;
    color: white;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 15px;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, background 0.2s;
    font-family: 'Gotham Light', sans-serif;
}

.inmo-lock-submit-btn:hover {
    transform: translateY(-2px);
    background: #016270;
}

.inmo-lock-error {
    color: #ff6b6b;
    font-size: 14px;
    margin-top: 12px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .inmo-lock-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .inmo-lock-title {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   WECITY REDESIGN (SINGLE PROJECT)
   ========================================================================== */
.inmoinvest-single-wrapper {
    background-color: transparent !important;
    padding: 40px 0 !important;
}

.inmoinvest-project-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .inmoinvest-project-grid {
        display: flex;
        flex-direction: column;
    }

    .inmoinvest-main-col,
    .inmoinvest-sidebar-col {
        display: contents;
    }

    .inmoinvest-project-hero {
        order: 1;
    }

    .wecity-project-tabs {
        order: 3;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }

    .inmoinvest-tab-content-wrapper {
        order: 4;
    }

    .inmoinvest-sidebar-col .wecity-card {
        order: 2;
    }

    .inmoinvest-sidebar-col .wecity-contact-card {
        order: 5;
    }
}

.inmoinvest-main-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* HERO */
.inmoinvest-project-hero {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.inmo-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* TABS */
.wecity-project-tabs {
    display: flex;
    gap: 32px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
}

.wecity-tab {
    padding: 12px 0;
    color: #6b7280;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    margin-bottom: -1px;
    flex-shrink: 0;
    /* Overlap border */
}

.wecity-tab:hover,
.wecity-tab.active {
    color: #111827;
    border-bottom-color: #111827;
}

.wecity-tab-locked,
.wecity-tab-locked-temp {
    position: relative;
    cursor: help;
    display: inline-flex;
    align-items: center;
}

.wecity-tab.wecity-tab-locked:hover {
    color: #6b7280;
    border-bottom-color: transparent;
}

.wecity-locked-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #007A8D;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 6px;
    width: max-content;
    max-width: 200px;
    /* Allow text to wrap if it's too long */
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
}

.wecity-locked-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: #ffffff;
}

.wecity-tab-locked:hover .wecity-locked-tooltip,
.wecity-tab-locked-temp:hover .wecity-locked-tooltip {
    opacity: 1;
    visibility: visible;
}

/* CARDS AND CONTENT */
.wecity-single-column-content {
    line-height: 1.6;
}

.wecity-single-column-content h2 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 0 24px 0 !important;
}

.wecity-single-column-content p {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.inmoinvest-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 992px) {
    .sticky-sidebar {
        position: sticky;
        top: 120px;
        /* Accounts for Divi header height */
        align-self: flex-start;
    }
}

.wecity-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wecity-card-header {
    margin-bottom: 24px;
}

.wecity-badge-status {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
}

.wecity-card-title {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #111827 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.2 !important;
}

.wecity-card-location {
    display: block;
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 16px;
}

.wecity-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wecity-tag {
    padding: 4px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
    position: relative;
}

.wecity-tag[data-tooltip] {
    cursor: help;
}

.wecity-tag[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 8px;
    background-color: #ffffff;
    color: #007A8D;
    font-size: 11px;
    padding: 6px 10px;
    border-radius: 6px;
    white-space: nowrap;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    animation: fadeInTooltip 0.2s forwards 0.1s;
    pointer-events: none;
}

.wecity-tag[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: #ffffff;
    margin-top: -2px;
    z-index: 9999;
    opacity: 0;
    animation: fadeInTooltip 0.2s forwards 0.1s;
    pointer-events: none;
}

.wecity-progress-area {
    margin-bottom: 32px;
}

.wecity-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 8px;
}

.wecity-progress-labels .label {
    font-weight: 500;
}

.wecity-progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 12px;
}

.wecity-progress-fill {
    height: 100%;
    background: #007A8D;
    /* Primary blue */
    border-radius: 999px;
}

.wecity-progress-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.val-captado {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.val-objetivo {
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
}

.wecity-metrics-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.wecity-metric-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 6px;
}

.wecity-metric-row-3col {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 6px;
}

.wecity-metric-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.wecity-metric-label {
    color: #6b7280;
    font-size: 0.95rem;
}

.wecity-metric-val {
    color: #111827;
    font-weight: 600;
    font-size: 0.95rem;
}

.wecity-btn-primary {
    width: 100%;
    background: #007A8D;
    /* Primary blue */
    color: white;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.wecity-btn-primary:hover {
    background: #007A8D;
}

.wecity-contact-card {
    text-align: center;
    padding: 24px;
}

.wecity-contact-card h4 {
    margin: 0 0 8px 0 !important;
    font-size: 1.25rem !important;
    color: #111827 !important;
}

.wecity-contact-card p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.5;
}

.wecity-btn-secondary {
    width: 100%;
    background: transparent;
    color: #007A8D;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #007A8D;
    cursor: pointer;
    transition: all 0.2s;
}

.wecity-btn-secondary:hover {
    background: #f0f7ff;
}

/* TIMELINE AND DOCS SPECIFICS */
.wecity-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-left: 16px;
}

.wecity-timeline::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.wecity-timeline-item {
    position: relative;
    padding-left: 24px;
}

.wecity-timeline-dot {
    position: absolute;
    left: -17px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: 2px solid white;
}

.wecity-timeline-dot.done {
    background: #059669;
}

.wecity-timeline-dot.active {
    background: #007A8D;
}

.wecity-timeline-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    align-items: baseline;
}

.wecity-timeline-header h4 {
    margin: 0 !important;
    font-size: 1.1rem !important;
    color: #111827 !important;
}

.wecity-timeline-date {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.wecity-docs-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wecity-doc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wecity-doc-row:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.wecity-doc-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #111827;
    font-weight: 500;
}

.wecity-doc-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ==========================================================================
   Custom Glassmorphism Header
   ========================================================================== */

.inmo-glass-header {
    position: sticky;
    top: 0;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-family: inherit;
    transition: all 0.3s ease;
}

.inmo-header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inmo-header-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

.inmo-header-sitename {
    font-size: 24px;
    font-weight: 700;
    color: #1B474F;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.inmo-header-nav {
    display: flex;
    align-items: center;
}

.inmo-nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.inmo-nav-list li {
    position: relative;
    padding: 10px 0;
}

.inmo-nav-list li>a {
    color: #1B474F;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inmo-nav-list li>a:hover,
.inmo-nav-list li.current-menu-item>a {
    color: #007A8D;
}

/* Dropdown Menu Styles */
.inmo-nav-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    margin: 0;
    padding: 10px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    transform: translateY(10px);
    z-index: 1001;
    list-style: none;
    border: 1px solid #e2e8f0;
}

.inmo-nav-list li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.inmo-nav-list .sub-menu li {
    padding: 0;
}

.inmo-nav-list .sub-menu a {
    display: block;
    padding: 10px 20px;
    color: #475569;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.inmo-nav-list .sub-menu a:hover {
    background: #f8fafc;
    color: #007A8D;
}

/* Primary Button Styling */
.inmo-nav-list li.app-login-btn>a,
.inmo-nav-list li.btn-primary>a {
    background-color: #007A8D;
    color: white !important;
    padding: 10px 24px;
    border-radius: 9999px;
    font-weight: 600;
    box-shadow: 0 4px 6px -1px rgba(0, 122, 141, 0.2);
}

.inmo-nav-list li.app-login-btn>a:hover,
.inmo-nav-list li.btn-primary>a:hover {
    background-color: #006070;
    transform: translateY(-1px);
}

.inmo-header-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    z-index: 10001;
}

.inmo-header-mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #1B474F;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .inmo-glass-header {
        padding: 15px 20px;
    }

    .inmo-header-mobile-toggle {
        display: flex;
    }

    .inmo-header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        transition: right 0.3s ease;
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .inmo-header-nav.active {
        right: 0;
    }

    .inmo-nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
    }

    .inmo-nav-list li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f1f5f9;
        display: block;
    }

    .inmo-nav-list li>a {
        padding: 16px 0;
        width: 100%;
        justify-content: space-between;
    }

    .inmo-nav-list .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 10px 15px;
        min-width: 100%;
        display: none;
    }

    /* Simple toggle for mobile submenu */
    .inmo-nav-list li.auto-open>.sub-menu {
        display: block;
    }

    .inmo-nav-list .sub-menu a {
        padding: 10px 0;
    }

    .inmo-header-mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .inmo-header-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .inmo-header-mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   Animated Arrow Hover Effect for Plugin Buttons
   ========================================================================== */
.wecity-btn-primary,
.wecity-btn-secondary {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wecity-btn-primary::after,
.wecity-btn-secondary::after,
.inmo-btn-arrow::after,
.inmo-btn-arrow .et_pb_button::after {
    content: "\2197";
    /* North East Arrow ↗ */
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(0, 0);
    margin-left: 6px;
}

.wecity-btn-primary:not([disabled]):hover::after,
.wecity-btn-secondary:not([disabled]):hover::after,
.inmo-btn-arrow:hover::after,
.inmo-btn-arrow:hover .et_pb_button::after {
    transform: translate(4px, -4px);
}

.wecity-btn-primary[disabled]::after,
.wecity-btn-secondary[disabled]::after,
.inmo-submitting::after {
    display: none !important;
    /* No arrow for disabled buttons like Finalizado */
}

/* ==========================================================================
   Fluent Forms Loading Animation
   ========================================================================== */
.inmo-loading-dots::after {
    content: '';
    animation: inmo-dots 1.5s steps(5, end) infinite;
}

@keyframes inmo-dots {

    0%,
    20% {
        color: rgba(0, 0, 0, 0);
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    40% {
        color: white;
        text-shadow:
            .25em 0 0 rgba(0, 0, 0, 0),
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    60% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 rgba(0, 0, 0, 0);
    }

    80%,
    100% {
        text-shadow:
            .25em 0 0 white,
            .5em 0 0 white;
    }
}

/* ==========================================================================
   Fluent Forms Success Message Premium Design
   ========================================================================== */
.fluentform .ff-message-success,
.ff-message-success {
    background-color: #f2f9fa !important;
    /* Very light brand color */
    border: 1px solid rgba(0, 122, 141, 0.3) !important;
    border-radius: 12px !important;
    padding: 24px 24px 24px 70px !important;
    color: #004d59 !important;
    /* Dark text */
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025) !important;
    position: relative;
    line-height: 1.6 !important;
    margin-top: 20px !important;
}

.fluentform .ff-message-success::before,
.ff-message-success::before {
    content: "\2713";
    /* Unicode Checkmark */
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #007A8D;
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 122, 141, 0.15);
}

/* ==========================================================================
   Remove Browser Autofill Yellow Background
   ========================================================================== */
.fluentform input:-webkit-autofill,
.fluentform input:-webkit-autofill:hover,
.fluentform input:-webkit-autofill:focus,
.fluentform input:-webkit-autofill:active {
    -webkit-text-fill-color: #004d59 !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* =============================================
   Altamis - Custom CSS Overrides (Merged)
   Correcciones de estilos de plugins de terceros
   ============================================= */

/* --- Divi Pixel Carousel: botón ancho natural --- */
body .dipi_carousel_0 .dipi-carousel-button,
body .dipi_carousel_0 .et_pb_button.dipi-carousel-button {
    width: auto !important;
    display: inline-block !important;
    min-width: 0 !important;
}

/* --- Formularios Protegidos por Contraseña (WordPress) --- */
.post-password-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.post-password-form p {
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.post-password-form label {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.post-password-form input[type="password"] {
    width: 100%;
    max-width: 350px;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.post-password-form input[type="password"]:focus {
    border-color: #007A8D;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 122, 141, 0.15);
    background-color: #ffffff;
}

.post-password-form input[type="submit"] {
    background-color: #007A8D !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 35px !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease !important;
    margin-top: 20px;
    display: inline-block;
}

.post-password-form input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    background-color: #006575 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

/* --- CookieYes Banner Overrides --- */
.cky-consent-bar {
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    border: 1px solid #f0f0f0 !important;
    margin: 20px auto !important;
    width: calc(100% - 40px) !important;
    max-width: 750px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 20px !important;
    background-color: #ffffff !important;
    padding: 25px !important;
}

.cky-title {
    color: #007A8D !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    font-size: 20px !important;
    margin-bottom: 15px !important;
}

.cky-title::before {
    content: "🍪";
    margin-right: 12px;
    font-size: 1.4em;
}

.cky-btn-accept {
    background-color: #007A8D !important;
    border-color: #007A8D !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    padding: 10px 24px !important;
}

.cky-btn-accept:hover {
    background-color: #006575 !important;
    border-color: #006575 !important;
    box-shadow: 0 5px 15px rgba(0, 122, 141, 0.2) !important;
    transform: translateY(-1px) !important;
}

.cky-btn-reject, .cky-btn-customize {
    color: #007A8D !important;
    border-color: #007A8D !important;
    border-radius: 8px !important;
    background: transparent !important;
    font-weight: 500 !important;
    border-width: 1px !important;
    border-style: solid !important;
    transition: all 0.3s ease !important;
    padding: 10px 24px !important;
}

.cky-btn-reject:hover, .cky-btn-customize:hover {
    background-color: rgba(0, 122, 141, 0.05) !important;
    transform: translateY(-1px) !important;
}

.cky-notice-btn-wrapper {
    gap: 12px !important;
}

.cky-notice-des {
    font-size: 14px !important;
    color: #555555 !important;
    line-height: 1.6 !important;
}

/* ==========================================================================
   Public Register Shortcode Styles
   ========================================================================== */
.inmo-register-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    width: 100%;
}

.inmo-register-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
}

.inmo-register-header {
    text-align: center;
    margin-bottom: 32px;
}

.inmo-register-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1B474F;
    margin-bottom: 12px;
}

.inmo-register-header p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

.inmo-register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.inmo-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inmo-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.inmo-form-group input[type="text"],
.inmo-form-group input[type="email"],
.inmo-form-group input[type="password"] {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #cbd5e1;
    background: white;
    font-size: 1rem;
    color: #0f172a;
    transition: all 0.2s;
    width: 100%;
    box-sizing: border-box; /* Fix Divi overflow issues */
}

.inmo-form-group input:focus {
    outline: none;
    border-color: #1B474F;
    box-shadow: 0 0 0 3px rgba(27, 71, 79, 0.1);
}

.inmo-password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.inmo-toggle-password {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    display: flex;
}

.inmo-toggle-password:hover {
    color: #1B474F;
}

.inmo-checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 0.85rem;
    color: #64748b;
    cursor: pointer;
}

.inmo-checkbox-group input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.inmo-checkbox-group a {
    color: #1B474F;
    text-decoration: underline;
    font-weight: 500;
}

.inmo-btn-primary {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B474F;
    color: white;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

.inmo-btn-primary:hover {
    background-color: #123339;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(27, 71, 79, 0.2);
}

.inmo-btn-primary:active {
    transform: translateY(0);
}

.inmo-btn-primary:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.inmo-alert {
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.inmo-alert.error {
    background-color: #fef2f2;
    color: #ef4444;
    border: 1px solid #fca5a5;
}

.inmo-alert.success {
    background-color: #f0fdf4;
    color: #10b981;
    border: 1px solid #86efac;
}

.inmo-register-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.95rem;
    color: #64748b;
}

.inmo-register-footer a {
    color: #1B474F;
    font-weight: 600;
    text-decoration: none;
}

.inmo-register-footer a:hover {
    text-decoration: underline;
}

/* Spinner Loader */
.spinner {
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 24px;
    height: 24px;
}
.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
    100% { transform: rotate(360deg); }
}
@keyframes dash {
    0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
    50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
    100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}

@media (max-width: 640px) {
    .inmo-register-card {
        padding: 32px 24px;
    }
    .inmo-register-header h2 {
        font-size: 1.6rem;
    }
}