/*
Theme Name: Easypark SaaS Theme
Theme URI: https://easypark.app
Author: Tu Nombre
Description: Tema personalizado para sistema de gestión de parqueaderos.
Version: 2.0 Pro
*/

:root {
    /* Paleta de colores moderna */
    --ep-dark-blue: #0B132B;
    --ep-rich-blue: #1C2541;
    --ep-bright-blue: #3A506B;
    --ep-accent: #4CC9F0; /* Azul cyan vibrante para detalles */
    --ep-primary: #0d6efd; /* Mantener el azul de bootstrap para botones */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* NAVEGACIÓN */
.navbar {
    transition: all 0.3s ease;
}
.navbar-brand {
    font-weight: 800;
    letter-spacing: -1px;
}

/* SECCIÓN HÉROE (Principal) */
.hero-modern {
    /* Fondo degradado oscuro y rico */
    background: linear-gradient(135deg, var(--ep-dark-blue) 0%, var(--ep-rich-blue) 100%);
    min-height: 95vh; /* Casi toda la altura de la pantalla */
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

/* Elementos decorativos de fondo (círculos borrosos) */
.hero-modern::before, .hero-modern::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--ep-accent);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}
.hero-modern::before { top: -100px; left: -100px; }
.hero-modern::after { bottom: -100px; right: -100px; background: var(--ep-primary); }


/* Tarjeta de Login Flotante */
.login-card-floating {
    background: #ffffff;
    color: var(--ep-dark-blue);
    border-radius: 20px;
    /* Sombra grande y suave para efecto 3D */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10; /* Asegurar que esté sobre los elementos decorativos */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-pills.custom-pills .nav-link {
    border-radius: 50px;
    color: var(--ep-rich-blue);
    font-weight: 600;
    padding: 10px 20px;
}
.nav-pills.custom-pills .nav-link.active {
    background-color: var(--ep-primary);
    color: white;
}

/* FORMULARIOS */
.form-floating > .form-control {
    border-radius: 12px;
    border: 2px solid #eee;
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus {
    border-color: var(--ep-accent);
    box-shadow: 0 0 0 0.25rem rgba(76, 201, 240, 0.25);
}
.btn-lg-rounded {
    border-radius: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* SECCIONES */
.section-title {
    font-weight: 800;
    color: var(--ep-dark-blue);
}
.section-subtitle {
    color: var(--ep-accent);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* TARJETAS DE CARACTERÍSTICAS */
.feature-card-pro {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    height: 100%;
    /* Sombra sutil inicial */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}
.feature-card-pro:hover {
    transform: translateY(-15px); /* Se levanta más al pasar el mouse */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 25px;
}

/* TICKET DEMO */
.ticket-demo-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    position: relative;
}
/* Un pequeño elemento decorativo detrás del ticket */
.ticket-demo-container::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--ep-accent);
    opacity: 0.2;
    border-radius: 20px;
    z-index: -1;
    transform: rotate(15deg);
}

/* FOOTER / CTA FINAL */
.footer-cta {
    background: var(--ep-dark-blue);
    color: white;
    border-radius: 30px 30px 0 0; /* Bordes redondeados arriba */
    margin-top: 50px;
}
.payment-icons i {
    font-size: 2.5rem;
    opacity: 0.6;
    transition: 0.3s;
}
.payment-icons i:hover {
    opacity: 1;
    color: white;
}