body{
    margin:0;
    font-family: 'Montserrat', sans-serif;
    background:#f5f5f5;
}

/* BARRA SUPERIOR */
.topbar{
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 15px;
    font-size:14px;
    flex-wrap:wrap;
}

.topbar img{
    height:35px;
    max-width:100%;
}

/* NAV PRINCIPAL */
.navbar{
    background:#6a0d25;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 15px;
    position:relative;
}

.nav-links{
    display:flex;
    gap:25px;
    font-weight:600;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* BUSCADOR */
.search-box{
    display:flex;
    align-items:center;
}

.search-box input{
    padding:8px 15px;
    border-radius:20px;
    border:none;
    outline:none;
    width:180px;
}

/* CONTENIDO */
.container{
    max-width:1100px;
    margin:auto;
    padding:25px 15px;
}

.breadcrumb{
    font-size:14px;
    color:#888;
    margin-bottom:15px;
    word-wrap:break-word;
}

.title{
    font-size:28px;
    font-weight:600;
    color:#555;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.title::after{
    content:"";
    flex:1;
    height:2px;
    background:#ccc;
}

.text{
    margin-top:15px;
    font-size:15px;
    line-height:1.6;
    color:#333;
    white-space:pre-line;
}

.section{
    margin-top:30px;
    font-size:20px;
    font-weight:600;
    color:#555;
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.section::after{
    content:"";
    flex:1;
    height:2px;
    background:#ccc;
}

/* BOTÓN CENTRADO */
.boton-container{
    display:flex;
    justify-content:center;
    margin-top:30px;
}

.boton-tramite{
    background:#6a0d25;
    color:#fff;
    padding:15px 30px;
    border:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.boton-tramite:hover{
    background:#8a1a35;
}

.boton-tramite:active{
    transform:scale(0.97);
}

/* BOTÓN FLOTANTE */
.float{
    position:fixed;
    right:15px;
    bottom:15px;
    background:#0c2d48;
    color:#fff;
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 5px 10px rgba(0,0,0,0.3);
}

/* FOOTER */
.footer{
    background:#6a0d25;
    color:#fff;
    padding:40px 20px;
    margin-top:40px;
}

.footer-container{
    max-width:1100px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer h3{
    font-size:18px;
    margin-bottom:10px;
}

.footer p, .footer a{
    font-size:14px;
    color:#fff;
    text-decoration:none;
    line-height:1.6;
}

.footer a:hover{
    text-decoration:underline;
}

.social{
    display:flex;
    gap:10px;
    margin-top:10px;
}

.social a{
    background:#fff;
    color:#6a0d25;
    width:35px;
    height:35px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:5px;
    font-size:16px;
}

/* RESPONSIVE */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:60px;
        left:0;
        width:100%;
        background:#6a0d25;
        flex-direction:column;
        gap:15px;
        padding:20px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .search-box input{
        width:100%;
    }

    .navbar{
        flex-wrap:wrap;
        gap:10px;
    }

    .title{
        font-size:22px;
    }

    .section{
        font-size:18px;
    }

    .text{
        font-size:14px;
    }

    .topbar{
        font-size:12px;
    }

    .footer-container{
        flex-direction:column;
        text-align:center;
    }

    .social{
        justify-content:center;
    }
}






























































