body {
    background-color: #f8f9fa;
    color: #282828;
    /*overflow-x: hidden;*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
}

.hero-image-mask {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.btn-primary {
    background-color: transparent;
    color: #f0712c;
    border: 1px solid #f0712c;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 1.125rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: #f0712c;
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-solid {
    background-color: #f0712c;
    color: #0a0a0a;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px -5px rgba(240, 113, 44, 0.4);
    cursor: pointer;
}

@media (min-width: 768px) {
    .btn-solid {
        padding: 1.125rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-solid:hover {
    background-color: #cc5f24;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(240, 113, 44, 0.5);
}

.btn-solid:disabled {
    background-color: #555;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #f0712c;
    border-radius: 5px;
}

.input-premium {
    width: 100%;
    background-color: #f9fafb;
    /* Fondo gris muy clarito */
    border: 1px solid #e5e7eb;
    /* Borde gris suave */
    color: #282828;
    /* Texto oscuro */
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.input-premium:focus {
    outline: none;
    border-color: #f0712c;
    /* Borde naranja al hacer clic */
    background-color: #ffffff;
    /* Fondo blanco al hacer clic */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-premium::placeholder {
    color: #9ca3af;
    /* Color gris para el texto de ejemplo */
}

.modal-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.modal-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #f0712c;
}

html {
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
    width: 100%;
    max-width: 100vw;
}