body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f8fb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar-brand {
    letter-spacing: 0.5px;
}

.hero {
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: 0;
}

.hero .hero-overlay {
    z-index: 1;
}

.hero > .container,
.hero > .container-fluid {
    position: relative;
    z-index: 2;
}

.object-fit-cover {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 100%);
}

.card {
    border: none;
}

.card .thumb {
    width: 110px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.urrahosting-logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
}

/* Scroll horizontal personalizado */
.overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.overflow-x-auto::-webkit-scrollbar {
    height: 6px;
}

.overflow-x-auto::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.overflow-x-auto::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.overflow-x-auto::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.auth-section {
    min-height: 70vh;
}

.auth-card {
    max-width: 420px;
    width: 100%;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
}

footer .urrahosting-logo {
    background-size: cover;
    background-image: url("../imgs/urrahostinglogo.png");
}

.table > :not(caption) > * > * {
    padding: 0.9rem 0.75rem;
}

/* Efecto hover para tarjetas de propiedades similares */
.hover-shadow {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

/* Founder highlight card */
.founder-hero {
    position: relative;
    background-image: url('../imgs/bg-house-interior.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.founder-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 18, 38, 0.55) 0%, rgba(12, 18, 38, 0.75) 60%, rgba(12, 18, 38, 0.85) 100%);
    z-index: 1;
}

.founder-hero .container {
    position: relative;
    z-index: 2;
}

.founder-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    max-width: 380px;
    width: 100%;
}

.founder-card-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 1;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-rating {
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    box-shadow: 0 0.35rem 1.2rem rgba(13, 110, 253, 0.3);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
}
