/*
Theme Name: The7 Child
Theme URI: https://dream-theme.com/
Description: Child Theme para REPMAD
Author: Fenix
Template: dt-the7
Version: 1.0
Text Domain: dt-the7-child
*/

/* areas */

.service-areas{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.service-box{
    position:relative;
    background:#fafafa;
    padding:30px;
    border:1px solid #e9e9e9;
    border-radius:12px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
    transition:all .3s ease;
    overflow:hidden;
}

.service-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background-image:linear-gradient(180deg,#2c74ff 0%,#01c2ce 100%);
}

.service-box:hover{
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.10);
    transform:translateY(-5px);
}

.service-box:hover::before{
    width:7px;
    transition:.25s ease;
}

.service-box h3{
margin:0 0 15px;
font-size:20px;
font-weight:700;
line-height:1.3;
}

.service-box h3 a{
color:#111;
text-decoration:none;
transition:.3s;
}

.service-box h3 a:hover{
color:#0056b3;
}

.service-box p{
margin:0;
font-size:15px;
line-height:1.8;
color:#666;
}

@media(max-width:1024px){
.service-areas{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:767px){
.service-areas{
grid-template-columns:1fr;
}
}

/*  END areas */


/* MUNICIPIOS OESTE Madrid */

/* ===== Municipios ===== */

.municipios-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:18px;
    margin:35px auto;
    max-width:1200px;
}

.municipios-grid a{
    display:flex;
    align-items:center;
    min-height:60px;
    text-decoration:none;
    color:#222;
    font-weight:600;
    background:#fff;
    border:1px solid #ececec;
    border-radius:10px;
    padding:16px 20px;
    position:relative;
    overflow:hidden;
    transition:.25s ease;
}

.municipios-grid a::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:linear-gradient(180deg,#2c74ff 0%,#01c2ce 100%);
}

.municipios-grid a:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    color:#2c74ff;
}

/* Tablet */

@media (max-width:1024px){

    .municipios-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

/* Móvil */

@media (max-width:767px){

    .municipios-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .municipios-grid a{
        min-height:56px;
        padding:14px;
        font-size:15px;
    }

}

/* END MUNICIPIOS OESTE Madrid */


