* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'davregular', sans-serif;
}

body {
    background: linear-gradient(181deg,rgba(233, 233, 233, 1) 0%, rgba(233, 233, 233, 1) 0%, rgba(239, 239, 239, 1) 0%, rgba(255, 255, 255, 1) 74%);
}

/* Logo */
.logo-davivienda {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    z-index: 150;
}

/* Legal lateral */
.legal-lateral h2 {
    position: absolute;
    transform: rotate(-180deg);
    writing-mode: vertical-rl;
    top: 200px;
    right: 25px;
    font-size: 10px;
    z-index: 3;
}



/* Barra limpia */
.custom-menu {
    padding: 10px 25px;
    margin-top: 10px;
}

/* Estilos generales del menú */
.menu-item {
    font-size: 16px; 
    font-family: 'davregular', sans-serif;
    color: #231f20 !important;
    padding: 3px 24px;
    border-radius: 50px;
    transition: 0.2s;
}


.menu-item.active {
    border: 1px solid #ED1C27; 
    font-family: 'davsemibold', sans-serif;
    color: #ED1C27 !important;
}


.navbar-toggler {
    border: none !important; 
}

.navbar-toggler:focus {
    box-shadow: none !important; 
}

/* Estilo del icono hamburguesa */
.navbar-toggler-icon {
    background-image: none !important; 
    width: 20px;
    height: 3px;
    background-color: #ed1c27; 
    position: relative;
    transition: 0.3s;
    border-radius: 50px;
    top: -10px;
}

/* Crear las otras dos líneas */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    border-radius: 50px;
    width: 28px;
    height: 3px;
    background-color: #E3000F;
    transition: 0.3s;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
} 

/* Desktop/Mobile headers */
.desktop { display: block;
margin-top: -10px; }
.mobile { display: none;  }


/* --- Sección 2: Conozca lo nuevo --- */

.titulo-seccion {
    font-size: 30px;
    font-family: 'davlight', sans-serif;
    color: #ed1c27;
    padding-left: 50px;
    padding-bottom: 40px;
    margin-top: 40px;
}

.titulo-seccion-dos {
    font-size: 30px;
    font-family: 'davlight', sans-serif;
    color: #231f20;
    padding-left: 50px;
    padding-bottom: 40px;
}

/* Íconos circulares */
.icono-circulo {
    width: 55px;
    height: 55px;
    background: #E61E26;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

    flex-shrink: 0;
    flex-grow: 0; 

    margin-left: 50px;
}

.icono-circulo img {
    width: 25px;
}

/* Textos */


.titulo-seccion b{
    font-family: 'davsemibold', sans-serif;
}

.benef-titulo {
    font-size: 20px;
    font-family: 'davsemibold', sans-serif;
    margin-bottom: 5px;
    color: #231f20;
}

.benef-texto {
    font-size: 16px;
    font-family: 'davregular', sans-serif;
    line-height: 1.4;
    color: #231f20;
}

/* Cards grandes */
.box-card {
    background: #F5F5F5;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    min-height: 180px;
    margin-bottom: 80px;
    height: 180px;
    margin-left: 50px;
    margin-right: 0px;
    transition: transform 0.3s ease; 
}

.box-card:hover{
    transform: scale(1.05);
}

.arrow-top {
    position: absolute;
    top: 15px;
    right: 20px;
}

.arrow-top img {
    width: 22px;
}

.card-title-red {
    color: #231f20;
    font-family: 'davsemibold', sans-serif;
    font-size: 24px;
}

.card-text{
    font-family: 'davregular', sans-serif;
    font-size: 16px;
    color: #231f20;
}

/* Link rojo */
.link-red {
    color: #231f20;
    font-family: 'davsemibold', sans-serif;
    text-decoration: underline;
}


footer{
    margin-top: 5px;
}

.text-footer{
    font-family: 'davregular', sans-serif;
    font-size: .8rem;
}

.img-footer img{
    width: 200px;
    padding-bottom: 10px;
}


/* RESPONSIVE */
@media (max-width: 768px) {

    .logo-davivienda { width: 60px; }

    .legal-lateral h2 {
    top: 110px;
    right: 10px;
}

    .desktop { display: none; }
    .mobile { display: block;
    padding-top: -30px; }

    .cta-box {
        padding: 15px;
        border-radius: 20px;
        margin-top: -20px;
        margin-bottom: -30px;
    }

   

.titulo-seccion {
    font-size: 25px;
    font-family: 'davlight', sans-serif;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    padding: 0px;
}

.titulo-seccion-dos {
    font-size: 25px;
    font-family: 'davlight', sans-serif;
    margin-bottom: 30px;
    margin-top: 30px;
    text-align: center;
    padding: 0px;
    margin-left: 30px;
    margin-right: 30px;
}

.icono-circulo {
    margin-left: 30px;
}

.box-card {
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
}

footer{
    margin-top: 30px;
}

.titulo-dos{
    margin-top: -40px;
    padding: 0px 20px;
}

}