 /* FONDO GENERAL */
    .ubicacion-bg {
        background: url('/image/slade.png') center/cover no-repeat;
        position: relative;
        padding: 120px 0;
    }

    .ubicacion-bg::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.55);
    }

    /* TITULO */
    .ubicacion-title {
        position: relative;
        color: #fff;
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 40px;
        z-index: 5;
        letter-spacing: 3px;
    }

    /* CONTENEDOR */
    .ubicacion-wrapper {
        position: relative;
        z-index: 5;
        background: rgba(255, 255, 255, 0.92);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 0 25px rgba(0,0,0,0.35);
        backdrop-filter: blur(4px);
        border: 2px solid #a24c22;
    }

    /* MAPA */
    .mapa-box iframe {
        width: 100%;
        height: 380px;
        border: none;
        border-radius: 12px;
        box-shadow: 0 0 12px rgba(0,0,0,0.3);
    }

    /* ÍCONOS DE INPUTS */
    .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #a24c22;
        font-size: 1.2rem;
    }

    .input-with-icon input,
    .input-with-icon textarea {
        padding-left: 45px;
        border: 1px solid #a24c22;
        resize: none;
    }

    .input-with-icon input:focus,
    .input-with-icon textarea:focus {
        border-color: #803619 !important;
        box-shadow: 0 0 10px rgba(162,76,34,0.6);
    }

    /* BOTÓN */
    .btn-contacto {
        width: 100%;
        background: transparent;
        border: 2px solid #a24c22;
        color: #a24c22;
        padding: 12px;
        border-radius: 40px;
        font-size: 1.1rem;
        font-weight: 600;
        letter-spacing: 2px;
        transition: 0.3s ease;
    }

    .btn-contacto:hover {
        background: #a24c22;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    /* RESPONSIVO */
    @media(max-width: 768px){
        .ubicacion-wrapper {
            padding: 25px;
        }

        .mapa-box iframe {
            height: 300px;
        }
    }