/* Paleta personalizada */
.text-yellow {
    color: #FFC107 !important;
}

.text-orange {
    color: #FF5722 !important;
}

.bg-dark-custom {
    background-color: #212121 !important;
}

.bg-gray {
    background-color: #f5f5f5 !important;
}

.bg-light-alt {
    background: #e5e5e5;
}

/* Botón naranja personalizado */
.btn-orange {
    background-color: #FF5722;
    color: #fff;
    border: none;
    font-size: 1.25rem;
        padding: 0.75rem 2.5rem;
        transition: background 0.2s, box-shadow 0.2s;
        box-shadow: 0 2px 8px rgba(255, 87, 34, 0.08);
}
.btn-orange:hover,
.btn-orange:focus {
    background-color: #E64A19;
}

/* Navbar más grande y destacado */
.navbar {
    box-shadow: 0 2px 8px rgba(33, 33, 33, 0.08);
    min-height: 80px;
    font-size: 1.25rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.navbar-brand {
    font-size: 2.2rem;
    padding-right: 2.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
}

/* Botones de navbar mejorados y responsivos */
.navbar .btn-navbar {
    font-size: 1.1rem;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-left: 0.5rem;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.08);
    font-weight: 600;
}

.navbar .btn-navbar.btn-orange {
    background-color: #FF5722;
    color: #fff;
    border: none;
}

.navbar .btn-navbar.btn-orange:hover,
.navbar .btn-navbar.btn-orange:focus {
    background-color: #E64A19;
    color: #fff;
}

.navbar .btn-navbar.btn-outline-light {
    background: transparent;
    color: #FFC107;
    border: 2px solid #FFC107;
}

.navbar .btn-navbar.btn-outline-light:hover,
.navbar .btn-navbar.btn-outline-light:focus {
    background: #FFC107;
    color: #212121;
}
/* Hero section más grande y llamativa */
.hero-section {
    background: linear-gradient(to right, #FFC107, #FFB300);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.hero-section h1 {
    font-size: 3.2rem;
    margin-bottom: 1.7rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-section p.lead {
    font-size: 1.6rem;
    margin-bottom: 2.2rem;
    font-weight: bold;

}

.hero-section .btn-lg {
    font-size: 1.25rem;
    padding: 0.75rem 2.5rem;
}

/* Hero section moderna */
.hero-section-modern {
    background: linear-gradient(120deg, #ffc107 70%, #ffca28 100%);
    min-height: 380px;
}
.hero-section-modern h1 {
    letter-spacing: 1px;
}
.hero-section-modern .text-yellow {
    color: #ffb300 !important;
}
.hero-btn-animate {
    transition: transform 0.18s, box-shadow 0.18s;
}
.hero-btn-animate:hover,
.hero-btn-animate:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(255, 87, 34, 0.18);
}

/* Tarjetas de servicios mejoradas y grandes */
.card-custom {
    background-color: #fff;
    border: 2px solid #FFC107;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 2px 8px rgba(33, 33, 33, 0.05);
        width: 100%;
        margin-bottom: 0;
        padding: 2.5rem 2rem;
        display: flex;
        align-items: center;
}

.card-custom:hover {
    transform: scale(1.03);
    border-color: #FF5722;
}

/* Íconos grandes y centrados verticalmente */
.card-custom i {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    margin-right: 2rem;
    min-width: 120px;
}

/* Espaciado vertical entre filas de servicios */
#servicios .row.mb-4 {
    margin-bottom: 2.7rem !important;
}

/* Inspirado en la referencia */
#servicios .row {
    min-height: 320px;
}
#servicios img {
    background: #fff;
    border: 4px solid #ffe082;
    object-fit: cover;
}
@media (max-width: 991px) {
    #servicios img {
        margin-bottom: 1.5rem;
    }
}

/* Títulos y textos de servicios más grandes */
#servicios h2 {
    font-size: 2.8rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-custom h4 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-custom p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Responsive: íconos arriba del texto en móviles */
@media (max-width: 768px) {
    .card-custom {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1rem;
    }

    .card-custom i {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
}

/* Mejorar el footer/contacto */
#contacto {
    border-top: 3px solid #FFC107;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

#contacto h2 {
    font-size: 2.6rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    font-weight: 700;
}

#contacto p {
    font-size: 1.3rem;
    margin-bottom: 0;
}

/* Mejorar la sección de servicios */
.info-services {
    font-size: 1.2rem;
}
/* Responsive: botones ocupan todo el ancho en móviles */
@media (max-width: 991px) {
    .navbar .btn-navbar {
        display: block;
        width: 100%;
        margin: 0.5rem 0 0.5rem 0;
        text-align: center;
    }
}

/* Dropdown de usuario personalizado */
.user-dropdown {
    display: flex !important;
    align-items: center !important;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.user-dropdown .bi-person-circle {
    font-size: 1.7rem; /* Ajusta el tamaño para que coincida mejor con el texto */
    margin-right: 0.3rem;
    vertical-align: middle;
    line-height: 1;
}

.dropdown-menu-dark.bg-dark-custom {
    background-color: #212121 !important;
    border: 1px solid #FFC107;
    min-width: 180px;
}

.dropdown-menu-dark .dropdown-item.text-yellow {
    color: #FFC107 !important;
    font-size: 1.1rem;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu-dark .dropdown-item.text-yellow:hover,
.dropdown-menu-dark .dropdown-item.text-yellow:focus {
    background-color: #FFC107 !important;
    color: #212121 !important;
}