.navbar.navbar-expand-lg.bg-white {
    position: fixed;
    top: 1rem;
    width: 100%;
    background-color: transparent !important;
}

#container-gif-home {
    transition: color 0.15s linear;
    position: relative;
    z-index: 1;
}

.gif-text {
    position: absolute;
    left: 10rem;
    bottom: 6rem;

    font-family: 'Montserrat', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0;

    color: #3F2212;

    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .gif-text {
        font-size: 22px;   /* o 24px si lo quieres más grande */
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .gif-text {
        left: unset;
        right: 1rem;
        font-size: 18px;
    }

    .text-block {
        padding: 1rem;
        font-size: 18px;
    }
}

.text-block {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 100%;
    color: #3F221266;
    max-width: 620px;
}

.two-images-left-large-right-small .left-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.two-images-left-large-right-small .right-image {
    width: 80%; /* más pequeña que la izquierda */
    height: auto;
    object-fit: cover;
}

/* Resalte para la sección activa */
.section-active {
    border-top: 4px solid #0d6efd;
    border-bottom: 4px solid #0d6efd;
    box-shadow: 0 0 12px rgba(13,110,253,0.12);
    transition: box-shadow .15s ease, border-color .15s ease;
}

/* Menu fijo (lo posicionamos con js) */
#section-menu {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0px 4px 18px rgba(0,0,0,0.15);
    border: 1px solid rgba(200,200,200,0.5);
    position: fixed;
    right: 20px;
    z-index: 100;
    display: none;
}

/* optional: tamaño y espaciado de botones */
#section-menu .btn {
    border-radius: 10px;
    padding: .28rem .5rem;
    font-size: .85rem;
}

#demo-new-section[disabled] {
    background-color: #c6c6c6 !important;
    color: gray !important;
    border: gray !important;
}

.custom-menu {
    display: none;
    position: absolute;
    z-index: 9999;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 120px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
    font-family: Arial;
}

.custom-menu ul {
    margin: 0;
    padding: 5px 0;
    list-style: none;
}

.custom-menu li {
    padding: 8px 12px;
    cursor: pointer;
}

.custom-menu li:hover {
    background: #f0f0f0;
}

/* Opcional: responsivo */
@media (max-width: 768px) {
    .two-images-left-large-right-small .row {
        flex-direction: column;
    }
    .two-images-left-large-right-small .right-image {
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

.gif-text[contenteditable="true"] {
    outline: 1px dashed #007bff;
    background: #f8f9fa;
}