:root {
    --bs-primary: #0056b3;
    --bs-success: #28a745;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

/* Evitar desbordes */
img {
    max-width: 100%;
    height: auto;
}

.text-primary-gradient {
    background: linear-gradient(90deg, #28a745, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Badges y Icon Boxes */
.bg-soft-success { background-color: #e8f5e9 !important; }
.bg-soft-danger { background-color: #ffebee !important; }
.bg-soft-warning { background-color: #fff3e0 !important; }
.bg-soft-primary { background-color: #e3f2fd !important; }

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* Animaciones suaves */
.floating-img {
    animation: float 6s ease-in-out infinite;
    max-height: 450px;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Estilo del Formulario en modo Dark Card */
.form-control:focus {
    box-shadow: none;
    border: 1px solid var(--bs-primary);
}

.hero-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
/* Arreglo del Logo en el Navbar */
.logo-nav {
    height: 40px; /* Tamaño estándar de logo para SaaS */
    width: auto;
    object-fit: contain;
}

/* Arreglo de la imagen en el Hero */
.hero-img-container {
    padding: 20px;
}

.hero-visual {
    max-height: 400px; /* Evita que la imagen sea gigantesca */
    border-radius: 20px;
    background: white;
    padding: 30px;
}

/* Mejoras de tipografía y colores */
h1 {
    letter-spacing: -1px;
    color: #1a1a1a;
}

.text-primary-gradient {
    background: linear-gradient(90deg, #28a745, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Estilo del botón (Stripe style) */
.btn-primary {
    background-color: #0061ff;
    border-color: #0061ff;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background-color: #0052d9;
    transform: translateY(-1px);
}

/* Fix para responsive: en móvil centrar todo */
@media (max-width: 991px) {
    .navbar-brand {
        margin-right: 0;
    }
    .hero-section {
        text-align: center;
    }
    .hero-visual {
        max-height: 250px;
        margin-top: 30px;
    }
}