/* Header --------------------------------------------------------------------------------------------------------*/
 
    .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1200;
            background-color: #181f25; /* Cambiar por el color deseado */
            border-bottom: 1px solid #e5e5e5;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        }
             
    


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: block;
}

.logo-img {
    display: block;
    width: 70px;
    height: 70px;
}

.header-mobile-block {
    display: flex;
    align-items: center;
}

.live-signal-btn {
    background: #EF536F;
    color: #ffffff !important;
    font-weight: 600;
    padding: 8px 20px 8px 32px;
    line-height: 1.3125rem;
    border-radius: 40px;
    position: relative;
}
.live-signal-btn:hover {
    background: #be3a52;
}
.live-signal-btn::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background: #ffffff;
    position: absolute;
    left: 18px;
    top: 50%;
    margin-top: -3px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 7px;
    margin-left: 10px;
}

.hamburger-line {
    display: block;
    height: 3px;
    min-height: 3px;
    border-radius: 3px;
    margin: 3px 0;
    transition: all 0.3s;
    background: #ffffff;
}
.hamburger-line.small {
    margin-right: 10px;
}
.hamburger-line.first {
    transform-origin: 3px 6px;
}
.hamburger-line.last {
    transform-origin: 2px -3px;
}

.show-menu .hamburger-line.first {
    transform: rotate(45deg);
}
.show-menu .hamburger-line.last {
    transform: rotate(-45deg);
}
.show-menu .hamburger-line.small {
    opacity: 0;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (min-width: 420px) {
    .hamburger {
        margin-left: 30px;
    }
}
@media (min-width: 1440px) {
    .header {
        padding: 20px 0;
    }

    .logo-img {
        width: 80px;
        height: 80px;
    }

    .live-signal-btn {
        padding: 5px 20px 5px 32px;
    }
}

/*# sourceMappingURL=header.css.map */