/* =========================================== */
/* ESTILOS UNIFICADOS PARA LANDING PAGE        */
/* =========================================== */

/* ===== MODAL PWA ===== */
#installModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
#installModal .modal-header {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 15px 20px;
}
#installModal .modal-header .close {
    color: white;
    opacity: 0.8;
    text-shadow: none;
}
#installModal .modal-header .close:hover {
    opacity: 1;
}
#installModal .modal-title {
    font-weight: 400;
    font-size: 18px;
}
#installModal .modal-body {
    background: #f8f9fa;
}
#installModal .btn-success {
    background: #27ae60;
    border-color: #27ae60;
}
#installModal .btn-success:hover {
    background: #2ecc71;
    border-color: #2ecc71;
}
#installModal .btn-default {
    background: #ecf0f1;
    border-color: #bdc3c7;
    color: #34495e;
}
#installModal .btn-default:hover {
    background: #bdc3c7;
}

/* ===== ESTILOS PERSONALIZADOS ===== */
.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}
.registration-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.registration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}
#mensajeCoincidencia i {
    margin-right: 5px;
}
[required] {
    transition: border-color 0.3s, border-width 0.3s;
}
.input-group-btn .btn {
    height: 42px;
}

/* ===== NAVBAR ===== */
.navbar-brand {
    padding: 15px 0 !important;
    height: auto !important;
}
.navbar-brand a {
    color: white !important;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 20px !important;
}
.navbar-brand a span {
    font-weight: 700;
    color: #3498db;
}
.navbar-nav > li > a.btn-nav {
    padding: 8px 15px !important;
    margin: 8px 5px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    font-size: 13px;
    transition: all 0.3s;
}
.navbar-nav > li > a.btn-nav:hover {
    background: #3498db;
    border-color: #3498db;
    transform: translateY(-2px);
}
.navbar-nav > li > a.btn-nav.btn-registro {
    background: #27ae60;
    border-color: #27ae60;
}
.navbar-nav > li > a.btn-nav.btn-registro:hover {
    background: #2ecc71;
    border-color: #2ecc71;
}
.navbar-nav > li > a.btn-nav i {
    margin-right: 5px;
}
.navbar-nav > li > a.btn-blue {
    color: white !important;
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.navbar-nav > li > a.btn-blue:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: all 0.4s;
    z-index: -1;
}
.navbar-nav > li > a.btn-blue:hover {
    color: #34495e !important;
}
.navbar-nav > li > a.btn-blue:hover:before {
    left: 0;
}
#navigation {
    min-height: 50px !important;
    padding: 0 !important;
}
#navigation .container {
    min-height: 50px;
}
#navigation .navbar-header {
    min-height: 50px;
}
#navigation .navbar-brand {
    height: auto;
    padding: 0;
}
#navigation .nav > li > a {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 50px !important;
}
#navigation .btn-blue {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

/* ===== SERVICE SECTION ===== */
#service .service-item {
    background: #fff;
    padding: 25px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    width: 100%;
}
#service .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.15);
}
#service .service-icon {
    margin-bottom: 15px;
}
#service .service-icon i {
    color: #3498db;
    transition: all 0.3s;
}
#service .service-item:hover .service-icon i {
    transform: scale(1.1);
}
#service .service-item h3 {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}
#service .service-item p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}
#service .row {
    display: flex;
    flex-wrap: wrap;
}
#service .col-md-4 {
    display: flex;
    margin-bottom: 25px;
}