*{
    margin:0;
    padding:0;
    font-family: 'Montserrat', sans-serif;
}

body{
    background:#fff;
}

html, body {
    overflow-x: hidden;
}


/********************************** MENU CELULAR ****************************************/

/* BOTÓN MENU */
.mob-menu-btn{
    display: none;
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 9999;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    color: #FFF;
    font-size: 35px;
    font-weight: bold;
    text-shadow:0 2px 6px rgba(255, 255, 255, 0.5);
}

.mob-menu-btn:hover{
    opacity: 0.8;
    transform: scale(1.05);
    color:  #1e8067;
}

/* BOTÓN CERRAR */
.mob-close{
    margin-left: 10px;
    color: #000;
    font-weight: bold;
}

/* MENÚ BASE */
.mob-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-top: 3px solid #049E84;
}

/* MENÚ ABIERTO */
body.mob-open .mob-menu{
    transform: translateX(0);
}

/* OVERLAY */
.mob-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.35);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

/* OVERLAY ABIERTO */
body.mob-open .mob-overlay{
    opacity: 1;
    visibility: visible;
}

/* HEADER DEL MENÚ */
.mob-header button{
    background: #fff;
    border: none;
    color:#479682;
    margin: 10px 0;
    font-size: 40px;
    font-weight: bolder;
    cursor: pointer;
}

.mob-header span{
    padding-right: 120px;
    color: #049e84;
    font-size: 30px;
    font-weight: bold;
}

/* ITEMS */
.mob-item button{
    width: 100%;
    text-align: left;
    padding: 14px 18px;    
    background:#175E4C;
    color:#fff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    text-shadow: 0 3px 5px rgba(0, 0, 0, 0.856);
    transition: background .25s ease,
                padding-left .25s ease;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.mob-item button:hover{
    padding-left:20px;
    background:#206E59;
    color:#fff;
}

/* SUBMENU */
.mob-submenu{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
    background:#EEF3F2;
}

.mob-submenu a{
    font-size: 15px;
    padding: 18px 0 15px 35px;
    font-weight: bold;
    text-decoration: none;
    color:#175E4C;
    transition: all 0.2s ease;
    text-align: left;
    transition: background .25s ease,
                padding-left .25s ease,
                color .25s ease;    
}

.mob-submenu a:hover{
    background:#DCEBE7;
    padding-left:42px;
    color:#175E4C;
}

/* SUBMENU ABIERTO */
.mob-item.open .mob-submenu{
    max-height: 400px;
}

.mob-item > button{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.mob-item > button::after{
    content:"›";
    font-size:24px;
    font-weight:300;
    transition:transform .25s ease;
}

.mob-item.open > button::after{
    transform:rotate(90deg);
}

/****************************************  HERO ****************************************/

.hero{
    position:relative;
    width:100%;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.20);
    z-index:1;
    pointer-events:none;    
}


/************************************ ALCALDIA ***************************************/
.alcaldia-text{
    flex: 1;
}

.alcaldia-text h2{
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.alcaldia-text h4{
    font-size: 1rem;
    margin-bottom: 25px;
    color: #049e84;
}

.alcaldia-text p{
    line-height: 1.8;
    font-size: 1.1rem;
}

.alcaldia-image img{
    width: 200px;
    object-fit: cover;
}

.alcaldia-content{
    text-align: justify;
    max-width: 850px;
    margin: 100px auto;  
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.alcaldia-banner{   
    width: 100%;
    height: 350px;
    background-image: url('../img/personal/alcaldia.jpg');
    background-size: cover;
    background-position: center;
}

/************************************ MISION ***************************************/

.mision-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/mision/mision.jpg');
    background-size: cover;
    background-position: center;
}

.content-mision{
    flex: 1;
}

.texto-mision{
    padding: 10px 10px 10px 12px;
    background-color: #f1f1f1;
}

.content-mision h2{
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.content-mision h4{
    font-size: 1rem;
    margin-bottom: 25px;
    color: #049e84;
}

.content-mision p{
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-image img{
    width: 200px;
    object-fit: cover;
}

.internal-mision{
    text-align: justify;
    max-width: 850px;
    margin: 100px auto;  
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

/*********************************** CONCEJO ************************************/

.internal-layout{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    padding: 100px 23%;
    align-items: start;

}

.concejo-info h1{
    font-size: 20px;
    margin-bottom: 30px;
    color: #049e84;
}

.content-info p{
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.concejo-grid{
    margin-left: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-card{
    width: 168px;
}

.grid-card img{
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: cover;
}

.grid-card h4{
    margin-top: 10px;
    font-size: 16px;
    color: #222;
}

.grid-card span{
    font-size: 14px;
    color: #049e84;
    font-weight: bold;
}

.stream-boton{
    margin-top: 55px;
    margin-bottom: 45px;

}

.stream-boton a{
    display:inline-block;
    background-color: #049e84;
    color:#fff;
    text-decoration:none;
    padding:25px 20px;
    border-radius:20px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.stream-boton a:hover{
    background-color: #1bb69c;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.concejo-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/concejales/concejo.jpg');
    background-size: cover;
    background-position: center;
}


/*********************************** CUENTA PUBLICA ************************************/

.presentation-page{
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

/* BLOQUE SUPERIOR */

.top-box{
    grid-column: 1 / 3;
    padding: 55px 0 0 0 ;
}

.top-box h2{
    margin-bottom: 20px;
    font-size: 20px;
    color: #049e84;
}

.top-box p{
    line-height: 1.8;
}


/* COLUMNA IZQUIERDA */

.left-box{
    padding: 30px;
}

.link-item{
    color: #049e84;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
}

.link-item:last-child{
    border-bottom: none;
}

.link-item a{
    text-decoration: none;
    color: #049e84;
    padding: 18px 16px;
    border-radius: 4px;
    transition: 0.3s;
}

.link-item a:hover{
    transform: scale(1.05);  
}

.link-item img{
    width: 220px;
    height: 200px;
    transition: 0.3s;
}


/* COLUMNA DERECHA */

.video-box video{
    width: 100%;
    height: auto;
    display: block;
}

.right-box{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-box p{
    margin-top: 10px;
    color: #049e84;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    line-height: 1.8;
}

.cuenta-banner{   
    width: 100%;
    height: 350px;
    background-image: url('../img/personal/alcaldia.jpg');
    background-size: cover;
    background-position: center;
}

/********************************** HISTORIA ***************************************/

.content-text{
    flex: 1;
}

.content-text h2{
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

.content-text h4{
    font-size: 1rem;
    margin-bottom: 25px;
    color: #049e84;
}

.content-text p{
    line-height: 1.8;
    font-size: 1.1rem;
}

.content-image img{
    width: 200px;
    object-fit: cover;
}

.internal-content{
    text-align: justify;
    max-width: 850px;
    margin: 100px auto;  
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.historia-banner{   
    width: 100%;
    height: 350px;
    background-image: url('../img/mision/mision.jpg');
    background-size: cover;
    background-position: center;
}

/*********************************** PLAN REGULADOR ************************************/

.regulador-page{
    max-width:1200px;
    margin:40px auto;
    padding:20px;
}

.regulador-page h1{
    margin-top: 36px;
    margin-bottom: 30px;
    font-size: 20px;
    color: #049e84;
}

.regulador-intro{
    display:flex;
    gap:40px;
    margin-bottom:50px;
}

.regulador-texto{
    width: 50%;
    flex:1;
}

.regulador-texto p{
    margin-top:25px;
}

.regulador-texto img{
    vertical-align:middle;
    margin-right:5px;
}

.regulador-documentos{
    display:flex;
    gap: 20px;
    width: 50%;
}

.regulador-doc{
    text-align:center;
}

.regulador-doc img{
    margin-top: 10px;
    width:270px;
    height:171px;
    object-fit:cover;
    display:block;
    margin-bottom:20px;
}

.regulador-doc img{
    transition:0.3s;
}

.regulador-doc:hover img{
    transform:scale(1.05);
}

.regulador-mini{
    text-align:center;
}

.regulador-mini img{
    margin-top: 10px;
    width:400px;
    height:220px;
    object-fit:cover;
    display:block;
    margin-bottom:20px;
}

.regulador-destacado{
    background:#f5f5f5;
    padding:20px;
    margin-bottom:40px;
}

.regulador-destacado p{
    text-align: justify;
        margin-top:25px;
}

.regulador-final{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/************************ BOTON REGULADOR ***********************/
.regulador-boton{    
    width:100%;
    justify-content:flex-end;
    padding-top:30px;
}

.regulador-boton a{
    display:inline-block;
    background:#049e84;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.regulador-boton a:hover{
    background:#35bda6;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.regulador-banner{
    width:100%;
    height:350px;
    background-image:url('../img/planregulador/regulador.jpg');
    background-size:cover;
    background-position:center;
}

/************************************  JUZGADO  *************************************/

.jpl-info{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.jpl-info h1{
    margin-top:52px;
    font-size:22px;
    margin-bottom:35px;
    color:#049e84;
}

.datos-juzgado{
    text-align:center;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    padding:25px;
}

.datos-juzgado div{
    padding:5px;
}

.datos-juzgado p{
    margin-top:10px;
}

.datos-juzgado a{
    font-weight:700;
    text-decoration:none;
    color:#049e84;
    padding:5px;
    line-height:1.6;
}

.datos-juzgado div:nth-child(-n+3){
    font-weight:bold;
    border-bottom:1px solid #666;
}

/* ACORDEON */

.jpl-acordeon{
    max-width:1200px;
    margin:30px auto;
    padding:0 20px;
}

.jpl-item{
    border:1px solid #999;
    margin-bottom:15px;
    transition:.3s;
}

.jpl-item:hover{
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.jpl-item.active{
    box-shadow:0 6px 16px rgba(41, 88, 65, 0.37);
}

.jpl-titulo{
    color:#049e84;
    font-size:16px;
    font-weight:700;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.jpl-titulo span{
    transition:transform .3s ease;
}

.jpl-item.active .jpl-titulo span{
    transform:rotate(180deg);
}

.jpl-contenido{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    transition:
        max-height .4s ease,
        padding .4s ease;
}

.jpl-item.active .jpl-contenido{
    max-height:500px;
    padding:20px;
}

.jpl-contenido p{
    line-height:1.8;
    text-align: justify;
}

.jpl-contenido a{
    font-weight:700;
    text-decoration:none;
    color:#049e84;
}

/* BANNER */

.juzgado-banner{
    width:100%;
    height:350px;
    background-image:url('../img/juzgado/juzgado.jpg');
    background-size:cover;
    background-position:center;
}


/*******************************  EMERGENCIA ******************************/


.emergency-content{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

.emergency-card{
    background:#fff;
    border-radius:10px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.emergency-card h2{
    margin-bottom:20px;
    color: #049e84;
}

.card-content h3{
    margin-bottom:15px;
}

.card-content p{
    line-height:1.8;
}

/* enlaces */

.link-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.link-box{
    background:#f5f5f5;
    padding:25px;
    border-radius:8px;
}

.link-box p{
    margin-top:25px;
}

.link-box img{
    vertical-align:middle;
    margin-right:5px;
}

.link-box h3{
    margin-bottom:15px;
}

.link-box ul{
    list-style:none;
    padding:0;
}

.link-box li{
    margin-bottom:10px;
}

.link-box a{
    text-decoration:none;
}

/* multimedia */

.media-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.media-item{
    text-align:center;
}

.media-item img{
    width:450px;
    border-radius:8px;
}

.media-item video{
    width:100%;
    height:300px;
    border:none;
    border-radius:8px;
}

/* ACORDEON */

.licencia-acordeon{
    max-width:1200px;
    margin:30px auto;
    padding:0 20px;
}

.licencia-item{
    border:1px solid #999;
    margin-bottom:15px;
    transition:.3s;
}

.licencia-item:hover{
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.licencia-item.active{
    box-shadow:0 6px 16px rgba(41, 88, 65, 0.37);
}

.licencia-titulo{
    color:#049e84;
    font-size:16px;
    font-weight:700;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.licencia-titulo span{
    transition:transform .3s ease;
}

.licencia-item.active .licencia-titulo span{
    transform:rotate(180deg);
}

.licencia-contenido{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    transition:
        max-height .4s ease,
        padding .4s ease;
}

.licencia-item.active .licencia-contenido{
    max-height:500px;
    padding:20px;
}

.licencia-contenido p{
    line-height:1.8;
    text-align: justify;
}

.licencia-contenido a{
    font-weight:700;
    text-decoration:none;
    color:#049e84;
}

.emergencia-banner{
    width:100%;
    height:350px;
    background-image:url('../img/emergencia/emergencia.jpg');
    background-size:cover;
    background-position:center;
}



/******************************** LICENCIA ********************************/

.licencias-section{
    padding:60px 20px;
}

.licencias-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.licencias-image{
    flex:1;
}

.licencias-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

.licencias-text{
    flex:1;
}

.licencias-text h1{
    margin-top:52px;
    font-size:22px;
    margin-bottom:35px;
    color:#049e84;

}

.licencias-text p{
    margin-bottom:15px;
    line-height:1.7;
}


/* TARJETAS */

.licencias-info{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.licencias-cards{
    flex:1;
    min-width:250px;
    padding:25px;
    border-radius:10px;
    background:#F6D017;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
    text-align:center;
}

.licencias-cards a{
    font-weight:700;
    text-decoration:none;
    color: #049e84;
    padding:5px;
    line-height:1.6;
}

.licencias-card{
    flex:1;
    min-width:250px;
    padding:25px;
    border-radius:10px;
    background:#F6D017;
    box-shadow:0 2px 8px rgba(0,0,0,.1);

}

.licencias-card a{
    font-weight:700;
    text-decoration:none;
    color:#ffffff;
    padding:5px;
    line-height:1.6;
}

.licencias-ley{
    flex:1;
    min-width:250px;
    padding:25px;
    border-radius:10px;
    background: #ffffff;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
    text-align:center;
}

.licencias-ley a{
    font-weight:700;
    text-decoration:none;
    color:#049e84;
    padding:5px;
    line-height:1.6;
}

.licencias-ley p{
    text-align:justify;
}

.licencias-ley h3{
    color: #049e84;
    font-size: 14px;
}

.licencias-card p{
    padding-top: 10px;
}

.licencia-boton{
    margin-top: 25px;
    margin-left: 80%;
}


.licencia-boton a{
    display:inline-block;
    background:#049e84;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.licencia-boton a:hover{
    background:#35bda6;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.ley-boton{
    margin-top: 25px;
}

.ley-boton a{
    display:inline-block;
    background:#049e84;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.ley-boton a:hover{
    background:#35bda6;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}


/* BANNER */

.licencia-banner{
    width:100%;
    height:350px;
    background-image:url('../img/licencia/licencia.jpg');
    background-size:cover;
    background-position:center;
}



.teorico-info{
    max-width:1200px;
    margin:auto;
    padding:20px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.teorico-ley{
    flex:1;
    min-width:250px;
    padding:25px;
    border-radius:10px;
    background: #ffffff;
    text-align:center;
}


.teorico-boton a{
    display:inline-block;
    background:#F6D017;
    color:#000;
    text-decoration:none;
    padding:15px 40px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.teorico-boton a:hover{
    background:#dfbb08;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/******************************** PERMISO *************************************/


.permiso-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/permiso/permiso.jpg');
    background-size: cover;
    background-position: center;
}

/******************************** DOM ****************************************/

.obras-content{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

/* Secciones */

.obras-section{
    margin-bottom:30px;
}

.obras-section h2{
    margin-top:60px;
    font-size:22px;
    margin-bottom:35px;
    color:#049e84;
}

/* Caja principal */

.obras-box{
    text-align: justify;
}

.obras-box h3{
    margin-bottom:15px;
}

/* Tarjetas */

.obras-links{
    margin-bottom: 50px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.obras-card{
    background:#f5f5f5;
    padding:25px;
    border-radius:8px;
}

.obras-card h3{
    margin-bottom:15px;
}

.obras-card ul{
    list-style:none;
    padding:0;
}

.obras-card li{
    margin-bottom:10px;
}

.obras-card a{
    font-weight:700;
    text-decoration:none;
    color: #049e84;
    padding:5px;
    line-height:1.6;
}

/* Imagen */

.obras-image{
    margin-top: 40px;
    overflow:hidden;
    height:350px;
    background-image: url('../img/dom/domlinea.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    border-radius:5px;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    position:relative;
}

.dom-plataforma{
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    position:absolute;
    bottom:175px;
    left:2%;
}

.dom-online{
    color: #fff;
    font-size: 53px;
    font-weight: bold;
    position:absolute;
    bottom:132px;
    left:2%;
}

.dom-texto{
    color: #ddd;
    font-weight: 600;
    font-size: 18px;
    position:absolute;
    bottom:140px;
    left:35%;
}

.dom-boton{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
}

.dom-boton a{
    font-size: 20px;
    font-weight: bold;
    display:inline-block;
    background:#2035f3;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:15px;
    letter-spacing:1px;
    transition:.3s;
}

.dom-boton a:hover{
    background:#4557f5;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}


/* Texto inferior */

.obras-text{
    margin-top: 50px;
    font-weight: bold;
    text-align: center;
    padding:20px;
}

.obras-text p{
    margin-bottom:15px;
    line-height:1.7;
}


.mas-boton a{
    display:inline-block;
    background-color: #049e84;
    color:#000;
    text-decoration:none;
    padding:10px 30px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.mas-boton a:hover{
    background-color: #17d4b5;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

.dom-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/dom/dom.jpg');
    background-size: cover;
    background-position: center;
}

/************************************ CONCURSOS ******************************/


.concursos{
    max-width:1200px;
    margin:auto;
    padding:40px 20px;
}

/* Titulo */

.concursos-titulo{
    margin-bottom:30px;
}

.concursos-titulo h1{
    margin-top:50px;
    font-size:22px;
    color:#049e84;
}

/* Bloques */

.concurso-item{
    display:flex;
    gap:20px;
    padding:10px;
    margin-bottom:10px;

}

/* Texto */

.concurso-info{
    flex:2;
    background:#e8e8e8;
    padding:30px;
}

.concurso-info h2{
    margin-top:0;
}

.concurso-info p{
    margin-bottom:0;
    line-height:1.6;
}

/* Enlaces */

.concurso-enlaces{
    flex:1;
    background:#1A9D85;
    padding:30px;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.concurso-enlaces a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    transition:.2s;
}

.concurso-enlaces a:hover{
    padding-left:3px;
}

/* Pie */

.concursos-footer{
    margin-top: 50px;

    background:#c7f5cf;
    padding:25px;
    text-align:center;
}

.concursos-footer a{
    font-weight:700;
    text-decoration:none;
    color: #049e84;
    padding:5px;
    line-height:1.6;
}

.concursos-footer p{
    margin:0;
    font-size:1.1rem;
}

.concurso-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/concursos/concursos.jpg');
    background-size: cover;
    background-position: center;
}

.concurso-banner p{
    padding-top: 270px;
    padding-left: 60%;
    text-align: center;
    color: #fff;
    font-weight:500;
    font-size: 35px;

}


/***************************************** VETERINARIA ********************************/

.vet-container{
    width:100%;
    background:#f5f8fa;
}

/* HERO */

.vet-hero{
    min-height:170px;
    background-color: #2c989e;
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:10px;
}

.vet-hero-content{
    margin-top: 45px;
    max-width:800px;
    color:#fff;
}

.vet-hero-content h1{
    font-size:3rem;
    margin-bottom:20px;
}

.vet-hero-content p{
    font-size:1.2rem;
    line-height:1.8;
    margin-bottom:30px;
}

.vet-btn{
    display:inline-block;
    background:#048d94;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:40px;
    transition:.3s;
}

.vet-btn:hover{
    transform:translateY(-3px);
}

/* CONTENIDO */

.vet-content{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

.vet-section{
    margin-bottom:70px;
}

.vet-section h2{
    text-align:center;
    margin-bottom:40px;
    color:#1f2937;
    font-size:2rem;
}

/* CARDS */

.vet-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.vet-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.vet-card:hover{
    transform:translateY(-6px);
}

.vet-card span{
    font-size:3rem;
}

.vet-card h3{
    margin:15px 0;
    color:#2e7d32;
}

/* INFO */

.vet-info{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.vet-info-box{
    background:#9fcff0;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.vet-info-box a{
    font-weight:700;
    text-decoration:none;
    color: #049e84;
    padding:5px;
    line-height:1.6;
}

.vet-info-box ul{
    padding-left:20px;
}

.vet-info-box li{
    margin-bottom:10px;
}

.vet-info-box strong{
    color: #e61c1c;
}

/* DESTACADO */

.vet-highlight{
    background:#f890ef;
    color:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
}

.vet-highlight h2{
    color:#fff;
}

.vet-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/veterinaria/veterinaria.jpg');
    background-size: cover;
    background-position: center;
}

/******************************* NOTICIAS DIARIAS *********************************/

.not-page{
    width:100%;
    padding:60px 0 80px;
    background:#f6f7f9;
}

.not-container{
    width:min(92%,1000px);
    margin:auto;
}

.not-header{
    margin-bottom:45px;
}

.not-header h2{
    margin-bottom:45px;
    text-align: justify;
}

.not-date{
    display:inline-block;
    font-size:.90rem;
    font-weight:600;
    color: #048d94;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-top: 35px;
    margin-bottom:35px;
}

.not-title{
    font-size:clamp(2rem,4vw,3.2rem);
    font-weight:700;
    color:#16385d;
    line-height:1.15;
    margin-bottom:20px;
}

.not-subtitle{
    max-width:850px;
    font-size:1.25rem;
    color:#666;
    line-height:1.7;
}

.not-image{
    margin:25px 0;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.not-image img{
    width:100%;
    display:block;
}

.not-content p{
    margin-bottom:25px;
    line-height:1.9;
    color:#444;
    font-size:1.08rem;
    text-align:justify;
}

.not-content ul{
    margin:25px 0 30px 30px;
}

.not-content li{
    margin-bottom:12px;
    line-height:1.8;
}

.not-content img{
    width:100%;
    margin:35px 0;
    border-radius:12px;
}

.not-boton{
    margin-top: 50px;
    margin-bottom: 30px;

}

.not-boton a{
    display:inline-block;
    background-color: #049e84;
    color:#fff;
    text-decoration:none;
    padding:15px 20px;
    border-radius:10px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.not-boton a:hover{
    background-color: #1bb69c;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/************************************  HEADER  *************************************/

header{
    width:100%;
    padding:16px 50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:absolute;
    top:0;
    left:0;
    z-index:200;
    background:rgba(48, 37, 37, 0.5);
}

header,
.navbar{
    position:absolute;
    z-index:10;
}

.logo{
    width:220px;
    height:auto;
    display:block;
    margin-left: 15%;
    justify-content:center;
    align-items:center;
    background:transparent;    
}

.top-links{
    margin-right:5%;
    display:flex;
    gap:30px;
    font-size:12px;
    background:rgba(0,0,0,0.5);
    padding:10px 20px;
    border-radius: 10px;
}


.top-links a{
    position: relative;
    display:inline-block;
    text-decoration:none;
    font-weight:bold;
    color:#fff;
    padding: 5px 10px;
}


.top-links a::after{
    content:"";
    position:absolute;
    left:10px;
    bottom:-1px;
    width:calc(100% - 20px);
    height:2px;
    background:#049e84;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.3s ease;
}

.top-links a:hover{
    color:#049e84;
}

.top-links a:hover::after{
    transform:scaleX(1);
}


/* ************************************   MENU PRINCIPAL   **********************************/

nav{
    position:absolute;
    top:101px;
    left:0;
    background-color: transparent;
    width:100%;
    text-align:center;
    font-size:20px;
    font-weight: 600;
}


/* ********************     LINKS ***************************/
.nav-links{
    position:relative;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    list-style:none;
    gap:30px;
    padding:1px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
}

/***************************** NAVBAR *****************************/

.navbar{
    width:100%;
    position:absolute;
    top:101px;
    left:0;
    z-index:150;
    background:rgba(48, 37, 37, 0.5);
}


/****************************    LINKS PRINCIPALES   ******************************/
.nav-links > li > a{
    position:relative;
    display:inline-block;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    padding: 10px 0;
}

/* EFECTO SUBRAYADO */
.nav-links > li > a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:4px;
    width:100%;
    height:2px;
    background:#049e84;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.3s ease;
}

/* HOVER */
.nav-links > li > a:hover{
    color:#fff;
}

.nav-links > li > a:hover::after{
    transform:scaleX(1);
}

/************************************ SUBMENU *****************************/

.dropdown{
    position:static;
}

.submenu{ 
    margin-left:-650px;
    position:absolute;
    top:100%;
    left:50%;
    width:1250px;
    background:#fff;
    border-top:1px solid #eee;
    display:flex;
    gap:70px;
    min-height:150px;
    padding:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}

/* ITEMS SUBMENU */
.submenu li{
    max-width:100%;
    margin:auto;
}

.submenu a{
    display:block;
    padding:15px 0px 15px 15px;
    color: #000;
    text-decoration:none;
    font-size: 16px;
    text-align: left;
}

/* HOVER ITEMS */
.submenu a:hover{
    color: #fff;
    background-color: #049e84;
    transition: 0.3s;
    text-align: left;
}

/* MOSTRAR SUBMENU */
.dropdown:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.submenu-right{
    display:flex;
    gap:80px;
}

.submenu-left{
    width:30%;
    border-right:1px solid #049e84;
}

.submenu-left h2{
    margin-top:45px;
    font-size:30px;
    font-weight:500;
    color:#049e84;
}

.submenu-column{
    display:flex;
    flex-direction:column;
    width: 350px;
    margin-left:-50px;
}

/****************************************  CARRUSEL   *************************************/

.carousel{
    width:100%;
    height:820px;
    margin:1px auto;
    position:relative;
    overflow:hidden;
    z-index:0;
    background:#000;
}

.carousel::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:220px;
    z-index:2;
    pointer-events:none;
}

.slides{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    transition:opacity 0.5s ease;
    pointer-events:none;   
}

.slide a{
    display:block;
    width:100%;
    height:100%;
    text-decoration:none;
}

.slide.active{
    opacity:1;
    pointer-events:auto;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.slide picture{
    width:100%;
    height:100%;
    display:block;
}


/* BOTONES */

.prev,
.next{
    position:absolute;
    top:60%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0);
    color:#fff;
    border:none;
    font-size:110px;
    font-weight: bold;
    padding: 7px 12px 7px 12px;
    cursor:pointer;
    z-index:50;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}


/*                                              BARRA TAG                                */

.middle-banner{
    width:100%;
    margin:0 auto 1px auto;
}

.middle-banner picture,
.middle-banner a{
    display:block;
    width:100%;
}

.middle-banner img{
    width:100%;
    height:auto;
    display:block;
}


/*                                              NOTICIAS                                   */

/*                                              TITULO NOTICIAS                            */

.titulo-noticias{
    width:100%;
    height: 35px;
    font-size: 25px;
    font-weight:900;
    text-align: right;
    display:flex;
    padding: 5px 0 0 15px ;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #555;
    border-left: 3px solid #049e84;
    margin-left: 170px;    
}

.noticias{
    width:100%;
    display:flex;
    justify-content:center;
    gap:30px;
    padding:50px 0 20px 0;
    flex-wrap:wrap;
}

.noticia{
    width:400px;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.noticia:hover{
    transform:translateY(-5px);
}

.noticia-imagen{
    position:relative;
}

.noticia-imagen img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.noticia-tag{
    position:absolute;
    top:0;
    right:0;
    background:#049e84;
    color:#fff;
    padding:15px 25px;
    border-bottom-left-radius:20px;
    font-size:13px;
    letter-spacing:1px;
}

.noticia-contenido{
    padding:20px;
    text-align: justify;
}

.noticia-contenido h3{
    font-size:18px;
    line-height:1.5;
    font-weight:300;
    margin-bottom:40px;
}

.noticia-contenido a{
    text-decoration:none;
    color:#777;
    font-weight:600;
    letter-spacing:1px;
}

.noticia-contenido a:hover{
    color:#049e84;
}

.noticia-fecha{
    border-top:1px solid #eee;
    padding:20px 30px;
    color:#777;
    font-size:14px;
}

.noticias-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/noticias/noticias.jpg');
    background-size: cover;
    background-position: center;
}

.noticias-banner p{
    padding-top: 270px;
    text-align: center;
    color: #fff;
    font-weight:300;
    font-size: 35px;

}


/***************************************  MAS NOTICIAS ******************************************/

.noticias-boton{
    width:100%;
    display:flex;
    justify-content:flex-end;
    padding-right:173px;
    padding-top:30px;
}

.noticias-boton a{
    display:inline-block;
    background:#049e84;
    color:#fff;
    text-decoration:none;
    padding:15px 40px;
    border-radius:20px;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    transition:.3s;
}

.noticias-boton a:hover{
    background:#35bda6;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}


/***************************************   GALERIA GRID   *************************************/


.titulo-grid{
    width:100%;
    height: 35px;
    font-size: 25px;
    font-weight:900;
    text-align: right;
    display:flex;
    padding: 5px 0 0 15px ;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #555;
    border-left: 3px solid #049e84;
    margin-left: 170px;    
}

.grid-section{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    margin-top: 50px;
    filter: brightness(0.8);
        transition: filter 0.4s ease;
}

/* ITEMS */

.grid-item {
    position: relative;
    overflow: hidden;
}

/* IMAGEN */
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}

/* OVERLAY */
.grid-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(253, 93, 0, 0.253);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* HOVER */
.grid-item:hover img {
    opacity: 1;
}

.grid-item:hover::after {
    opacity: 1;
}

/********************************************   FOOTER    **************************************/

.footer{
    background:#2E3534;  
    color:#eee;
    font-family:Arial, sans-serif;

}

/* CONTENEDOR */

.footer-container{
    max-width:1200px;
    margin:auto;
    padding: 250px 5px 100px ;
    display:flex;
    justify-content:space-between;
    gap: 50px;
    flex-wrap:wrap;
}

/* COLUMNAS */

.footer-column{
    flex:1 1 180px;
    min-width:180px;
}

.footer-column h3{
    color:#049e84;
    margin-bottom:25px;
    font-size:17px;
    font-weight:750;
}

/* LOGO */

.footer-logo{
    width:150px;
    margin-bottom: 30px;
    opacity:0.95;
    transition:0.3s ease;
}

.footer-logo:hover{
    opacity:1;
    transform:scale(1.02);
}

/* TEXTO */

.footer-column p{
    color:#ccc;
    line-height:1.8;
    font-size:13px;
}

/* LINKS */

.footer-column a{
    font-size: 13px;
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:10px;
    transition:0.3s;
}

.footer-column a:hover{
    color:#ac5b25;
    transform:translateX(5px);
}

/* REDES */

.footer-social{
    margin-top:10px;
    display:flex;
    gap:18px;
}

.footer-social a{
    color:#fff;
    font-size: 22px;
    transition:0.3s ease;
}

.footer-social a:hover{
    color:#049e84;
    transform:translateY(-3px);
}

.footer-bottom p{
    font-size:13px;
    color:#aaa;
}

.footer-contact p{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:1px;
    color:#ccc;
    font-size:13px;
}

.footer-contact i{
    color:#fff;
    font-size:13px;
    width:20px;
}

/* BARRA INFERIOR */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    padding:20px;
}

/***************************** FONOS  *****************************/

.fono-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/fono/fonos.jpg');
    background-size: cover;
    background-position: center;
}


.directorio{
    width:95%;
    max-width:1400px;
    margin:60px auto;
    background:#f8f8f8;
}

/************************************/

.dir-header{
    background:#049e84;
    color:#fff;
    padding:40px;
    display:flex;
    align-items:center;
    gap:40px;
    border-radius:12px 12px 0 0;
}

.dir-logo img{
    width:140px;
}

.dir-titulo{
    flex:1;
}

.dir-titulo h3{
    font-size:28px;
    font-weight:300;
}

.dir-titulo h1{
    font-size:42px;
    margin-top:5px;
}

/************************************/

.central{
    margin-top:35px;
    display:flex;
    align-items:center;
    gap:20px;
}

.telefono-icono{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    color:#049e84;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
}

.central span{
    font-size:22px;
}

.central h2{
    font-size:34px;
    margin-top:5px;
}

/************************************/

.directorio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:50px;
}

/************************************/

.unidad{
    background:#fff;
    border-radius: 5px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    overflow:hidden;
}

.unidad-titulo{
    background:#049e84;
    color:#fff;
    padding:14px 18px;
    font-size:16px;
    font-weight:600;
}

/************************************/

.unidad table{
    width:100%;
    border-collapse:collapse;
}

.unidad th{
    background:#eef7ec;
    color:#049e84;
    padding:12px;
    text-align:left;
}

.unidad td{
    padding:14px;
    border-bottom:1px dashed #ddd;
    font-weight: 600;
}

.unidad td a{
    color:#049e84;
    text-decoration: none;
    font-size: 20px;
}

.unidad td:last-child{
    text-align:right;
    font-weight:bold;

}

.unidad th:last-child,
.unidad td:last-child{
    text-align: right;
    color: #e97d25 ;
}

/*************************  UBICACION **********************************/

.municipio-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/municipio/municipio.jpg');
    background-size: cover;
    background-position: center;
}

.dideco-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/municipio/dideco.jpg');
    background-size: cover;
    background-position: center;
}

.civico-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/municipio/civico.jpg');
    background-size: cover;
    background-position: center;
}

.ubicacion{
    width:90%;
    max-width:1200px;
    margin:50px auto;
}

.titulo-pagina{
    text-align:center;
    margin-bottom:40px;
}

.titulo-pagina h1{
    color:#005A9C;
    font-size:2.2rem;
}

.titulo-pagina p{
    color:#666;
}

.datos-ubicacion{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:30px;
}

.info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}



.card a{
    font-weight:700;
    text-decoration:none;
    color: #049e84;
    line-height:1.6;
}



.card i{
    font-size:28px;
    color:#005A9C;
    margin-bottom:15px;
}

.card h3{
    margin-bottom:10px;
}

.mapa iframe{
    width:100%;
    height:100%;
    min-height:520px;
    border:0;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}



/***********************************************************************************************/
/******************************************** RESPONSIVE   *************************************/
/***********************************************************************************************/



/***********************************************  480  *******************************************/
@media(max-width:480px){

}


/************************************************  768 ********************************************/

@media(max-width:768px){

/********************** MENU CELULAR **************/

    .mob-menu-btn{
        display: block;
    }

        .navbar {
        display: none;
    }

    /******************  HEADER ********************/

    header{
    width:73%;
    flex-direction:column;
    position:absolute;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top: 2px solid #0d362c;
    background: #1D7A62;
    }

    .logo{
    margin: 0px 0px 0px -150px;
    width:180px;
    }

    .banner{
        height:580px;
        font-size:20px;
    }

    .middle-banner{
        height: 120px;
    }

    .carousel{
        height:100%;
    }

    .prev,
    .next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(0,0,0,0);
    color:white;
    border:none;
    font-size:50px;
    font-weight: lighter;
    margin: 0px -35px 0px -35px;
    cursor:pointer;
    }

    .top-links{
    width:100%;
    margin-left: 15px;
    font-size:12px;
    background:rgba(0,0,0,0.5);
    border-radius: 10px;
    justify-content:center;
    margin-top: 15px; 
    }

    .top-links a{
    text-align: center;
    font-size: 11px;
    font-weight: bold;
    padding: 0;
    margin: 0;   
    }

    .footer-container{
        flex-direction:column;
        gap:40px;
    }

/******************** FONOS  ************************/

.fono-banner{
    width: 100%;
    height: 350px;
    background-image: url('../img/fono/fonos.jpg');
}

.dir-header{
flex-direction:column;
text-align:center;
}

.central{
justify-content:center;
}

.directorio-grid{
grid-template-columns:1fr;
}

.dir-titulo h1{
font-size:32px;
}

.central h2{
font-size:28px;
}

/*************************  UBICACION **********************************/

.municipio-banner{
    width: 100%;
    height: 450px;
    background-image: url('../img/municipio/municipio.jpg');
    background-size: cover;
    background-position: center;
}

.dideco-banner{
    width: 100%;
    height: 450px;
    background-image: url('../img/municipio/dideco.jpg');
    background-size: cover;
    background-position: center;
}

.civico-banner{
    width: 100%;
    height: 450px;
    background-image: url('../img/municipio/civico.jpg');
    background-size: cover;
    background-position: center;
}
    .datos-ubicacion{
        grid-template-columns:1fr;
    }

    .mapa iframe{
        min-height:350px;
    }


/********************  ALCALDIA ************************/


    .alcaldia-content{
        flex-direction:column-reverse;
        align-items:center;
        margin-left: 10px;        
    }

    .alcaldia-text p{
        margin-top: 10px;
        width:100%;
        margin-left: 10px;
    }

    .alcaldia-text h2{
        font-size:20px;
        margin-left: 10px;
    }

    .alcaldia-text h4{
        font-size:20px;
        margin-left: 10px;
    }

    .alcaldia-foto{
        width:220px;
    }

    .alcaldia-banner{   
    width: 100%;
    height: 200px;
    background: #fff;
    background-size: cover;
    }

/*************************  MISION  ************************/

.mision-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
}

.content-mision{
    flex: 1;
    margin-left: 10px;
}

/*********************  CONCEJO **********************/

.concejo-banner{
    width: 100%;
    height: 140px;
    background: #fff;
    background-size: cover;
}

.concejo-info {
    text-align: justify;
    width: 335px;
    margin-left: -70px;
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.concejo-grid{
    margin-left: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-left: 5px;
}

.grid-card{
    margin-bottom: 30px;
}

.internal-layout{
    grid-template-columns: 1fr;
}

.content-grid{
    grid-template-columns: 1fr;
}

/********************* CUENTA PUBLICA **********************/

.cuenta-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
}

.internal-layout{
    grid-template-columns: 1fr;
}

.content-grid{
    grid-template-columns: 1fr;
}

.presentation-page{
    width: 95%;
    grid-template-columns: 1fr;
    gap: 20px;
}

.top-box{
    grid-column: auto;
}

.top-box h2{
    margin-bottom: 60px;
}

.left-box{
    padding: 0;
}

.right-box{
    margin-top: 50px;
    width: 100%;
}

.link-item{
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.link-item img{
    width: 150px;
    height: auto;
}

/******************* HISTORIA  *******************/

.historia-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
}

.internal-content{
    padding: 0px 10px 0px 10px;
    text-align: justify;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/*******************  REGULADOR   ***************/

    .regulador-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
    }

    .regulador-intro,
    .regulador-final{
        flex-direction:column;
    }
    .regulador-page h1{
        margin-bottom: 50px;

    }

    .regulador-documentos{
        flex-direction:column;
        align-items:center;
    }

    .regulador-texto{
        width:100%;
    }

    .regulador-doc{
        width:100%;
        max-width:250px;
    }
    .regulador-mini img{
        width: 100%;
    }

    .regulador-doc img{
        max-width:100%;
        height:auto;
    }

/******************* DOM **********************/    
.juzgado-banner{
    width: 100%;
    height: 550px;
    background-image: url('../img/dom/dom.jpg');
    background-size: cover;
    background-position: center;
}

.obras-links{
    grid-template-columns:1fr;
}  

.dom-plataforma{
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    position:absolute;
    bottom:260px;
    left:9%;
}

.dom-online{
    color: #fff;
    font-size: 43px;
    font-weight: bold;
    position:absolute;
    bottom:220px;
    left:9%;
}

.dom-texto{
    color: #ddd;
    font-weight: 600;
    font-size: 18px;
    position:absolute;
    bottom:100px;
    left:5%;
    padding-right: 15px;
}

.dom-boton{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

.dom-boton a{
    width: 210px;
    display:inline-block;
    background:#2035f3;
    color:#fff;
    text-decoration:none;
    padding:10px 20px;
    border-radius:15px;
    letter-spacing:1px;
    transition:.3s;
}

.dom-boton a:hover{
    background:#4557f5;
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/*************************  LICENCIA  ************************/

.licencia-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
}

/*************************  JUZGADO  ************************/

.juzgado-banner{
    width: 100%;
    height: 550px;
    background-image: url('../img/juzgado/juzgado.jpg');
    background-size: cover;
    background-position: center;
}

.juz-contacto{
    text-align:center;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
    padding:25px;

}
.juz-item{
    margin-bottom: 30px;
}

.datos-juzgado{
    grid-template-columns:1fr;
    width: 100%;
    margin-left: -25px;
}

/*******************  VETERINARIA  ****************/
.vet-banner{
    width: 100%;
    height: 500px;
    background-image: url('../img/veterinaria/veterinaria.jpg');
    background-size: cover;
    background-position: center;
}

.vet-hero-content h1{
    font-size:2rem;
}

.vet-info{
    grid-template-columns:1fr;
}

/***************** EMERGENCIA ***************/

.emergencia-banner{
    width: 100%;
    height: 500px;
    background-image: url('../img/emergencia/emergencia.jpg');
    background-size: cover;
    background-position: center;
}

.link-grid,
.media-grid{
    grid-template-columns:1fr;
}

.emergency-card{
    border-radius: 3px;
    padding-left: 10px;
}

.media-item{
    width: 320px;
}

.media-item img{
    width: 320px;
}

/********************  GALERIA GRID   ************/
    .grid-section{
        grid-template-columns:1fr;
    }

    .titulo-grid{
        margin-top: 50px;
        margin-left: 40px;
        margin-bottom: 0px;
    }  

/****************** NOTICIAS ******************/
    .noticias{
        margin: 0;
    }
    
    .titulo-noticias{
        margin-top: -20px;
        margin-left: 40px;
        margin-bottom: 0px;
    }

    .noticia{
        padding: 3px 3px 3px 3px;
    }

    .noticias-boton{
    width:100%;
    display:flex;
    justify-content:flex-end;
    padding-right: 160px;
    padding-top:10px;
    }

    .noticias-banner p{
    padding-top: 270px;
    text-align: center;
    color: #fff;
    font-size: 20px;

}


/*************** NOTICIAS DIARIAS ************/

.not-page{
    padding:40px 0;
}

.not-content{
    padding:30px;
}

.not-subtitle{
    font-size:1.05rem;
}

.not-content p{
    text-align:left;
}

/****************  CONCURSOS  ***************/

.concurso-banner{
    width: 100%;
    height: 150px;
    background: #fff;
    background-size: cover;
    }

    .concurso-item{
        grid-template-columns:1fr;
    }


/*****************  FOOTER ************************/

.footer{
    background:#2E3534;  
    color:#eee;
    font-family:Arial, sans-serif;
    padding-left: 15px;
}

}

/************************************************ 1024  *********************************************/
@media(max-width:1024px){


}



/************************************************ 1200 ************************************************/
@media(min-width:1200px){


}

/************************************************ 900 ************************************************/

@media(max-width: 900px){

}

