/* ===== HEADER FIJO ===== */

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(26, 26, 26, 0.3);
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    margin-right: 10px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

main[data-scroll-container] {
    margin: 0;
    padding-bottom: 0;
}

.hero {
    margin-top: 0;
    padding-top: 90px;
}

footer {
    margin-top: 0;
}

@media (max-width: 1023px) {
    .fixed-header {
        position: relative;
        background: var(--negro-carbon);
    }

    main[data-scroll-container] {
        margin-top: 0;
    }

    .hero {
        padding-top: 0;
    }
}