body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px; /* Para el fixed navbar */
}

/* Custom Primary Color (VenListo Blue) */
.text-primary {
    color: #2563eb !important;
}
.bg-primary {
    background-color: #2563eb !important;
}
.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}
.btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}
.btn-outline-primary {
    color: #2563eb;
    border-color: #2563eb;
}
.btn-outline-primary:hover {
    background-color: #2563eb;
    color: white;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    background: linear-gradient(to bottom right, #fdfbfb 0%, #ebedee 100%);
    padding: 3rem 0;
}

/* Mockup CSS (Simulated Smartphone) */
.mockup-container {
    width: 300px;
    height: 600px;
    position: relative;
}
.mockup-screen {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 12px solid #1e293b;
    border-bottom-width: 25px;
    border-top-width: 25px;
    background-color: white;
    position: relative;
    overflow: hidden;
}
/* Notch simulator */
.mockup-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background-color: #1e293b;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Features */
.feature-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Navbar branding */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Polished Card UI */
.polished-card {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.polished-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

/* Background Bubbles for Hero */
.bg-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, rgba(255,255,255,0) 70%);
}
.b-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
}
.b-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -50px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, rgba(255,255,255,0) 70%);
}
