.directorio-wrap{
    width:100%;
    padding:40px 16px;
    background:#f4f4f4;
    box-sizing:border-box;
}

.directorio-box{
    width:min(900px,100%);
    margin:0 auto;
    background:#ffffff;
    border-radius:18px;
    padding:32px 24px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    box-sizing:border-box;
}

.directorio-hero{
    text-align:center;
    margin-bottom:32px;
}

.directorio-hero h1{
    margin:0 0 14px 0;
    font-size:clamp(1.8rem,4vw,2.8rem);
    line-height:1.15;
    color:#111111;
}

.directorio-hero .intro{
    margin:0 auto;
    max-width:700px;
    font-size:1.05rem;
    line-height:1.6;
    color:#444444;
}

.directorio-info{
    margin-bottom:36px;
}

.directorio-info h2,
.directorio-formulario h2{
    margin:0 0 18px 0;
    font-size:1.45rem;
    color:#111111;
}

.beneficios{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:14px;
    margin-bottom:20px;
}

.beneficio{
    background:#f8f8f8;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:16px;
    font-weight:600;
    color:#222222;
    text-align:center;
}

.filtro{
    margin:0;
    padding:14px 16px;
    background:#fff8e6;
    border-left:4px solid #d4a017;
    border-radius:10px;
    color:#5c4a12;
    line-height:1.5;
}

.form-alta{
    display:grid;
    gap:18px;
}

.campo{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.campo label{
    font-weight:600;
    color:#222222;
}

.campo input[type="text"],
.campo input[type="file"],
.campo textarea{
    width:100%;
    padding:14px 14px;
    border:1px solid #d7d7d7;
    border-radius:12px;
    font-size:1rem;
    background:#fff;
    box-sizing:border-box;
}

.campo textarea{
    resize:vertical;
    min-height:120px;
}

.campo input[type="text"]:focus,
.campo input[type="file"]:focus,
.campo textarea:focus{
    outline:none;
    border-color:#222222;
}

.campo-check{
    background:#f8f8f8;
    border-radius:12px;
    padding:14px 16px;
}

.campo-check label{
    display:flex;
    gap:10px;
    align-items:flex-start;
    font-weight:500;
    line-height:1.5;
}

.campo-check input{
    margin-top:3px;
}

.campo button{
    border:none;
    border-radius:12px;
    padding:16px 22px;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    background:#111111;
    color:#ffffff;
    transition:transform .2s ease, opacity .2s ease;
}

.campo button:hover{
    opacity:.92;
    transform:translateY(-1px);
}

.nota-final{
    margin:18px 0 0 0;
    text-align:center;
    color:#555555;
    line-height:1.5;
}

@media (max-width:640px){
    .directorio-box{
        padding:24px 16px;
    }

    .beneficio{
        text-align:left;
    }
}

/*NUEVO NUEVO TARJETAS*/
.card-cerrajero{
    max-width:300px;
    margin:20px auto;
    padding:16px;
    background:#fff;
    border-radius:14px;
    box-shadow:0 6px 18px rgba(0,0,0,0.1);
    text-align:center;
    font-family:Arial, sans-serif;
}

.card-cerrajero img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
}

.card-cerrajero h3{
    margin:12px 0 6px;
    font-size:18px;
}

.verificado{
    color:green;
    font-size:14px;
}

.zona{
    color:#666;
    margin-bottom:12px;
}

.btn-whatsapp{
    display:block;
    padding:12px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.btn-llamar{
    display:block;
    padding:12px;
    background:#D35147;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
	margin-top: 15px;
}