﻿/*Formato botones desplegables del detalle del tramite*/

/* Nueva clase para evitar el desplazamiento visual de la fila completa */
.acordeon-independiente {
    display: flex;
    flex-direction: column;
}


.boton-desplegable {
    background-color: rgba(206, 197, 170);
    color: #000;
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra */
    padding: 0.75rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton-desplegable {
    transition: all 0.3s ease-in-out;
}
    .boton-desplegable:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    }




.boton-tituloTramite {
    background-color: rgba(206, 197, 170);
    color: #000;
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra */
    padding: 0.75rem 1rem;
    width: 60%;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton-tituloTramite {
    transition: all 0.3s ease-in-out;
}

    .boton-tituloTramite:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    }


.boton-desplegableDescripcion {
    background-color: rgba(200, 200, 200);
    color: #000;
    border: none;
    border-radius: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra */
    padding: 0.75rem 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.boton-desplegableDescripcion {
    transition: all 0.3s ease-in-out;
}

    .boton-desplegableDescripcion:hover {
        transform: translateY(-4px);
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
    }

    .boton-desplegable:hover {
        background-color: #c9be9d;
    }

.icono-izquierdo,
.icono-derecho {
    flex-shrink: 0;
}

.texto-desplegable {
    flex-grow: 1;
    text-align: left;
    margin-left: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.contenido-desplegado {
    margin-top: 0.5rem;
    background-color: #f9f9f9;
    border-radius: 1rem;
    padding: 0rem;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);

}

    .contenido-desplegado p {
        font-size: 1.1rem; 
    }
.titulo-blanco {
    color: white;
    font-size: 1.13rem;
    font-weight: 550;
}

.row {
    align-items: flex-start; /* evita que las columnas sigan creciendo juntas */
}

.col-12.col-md-6 {
    display: flex;
    flex-direction: column;
}



/*.card-body {
    background-color: rgba(236, 227, 210);*/
    /*padding-block: 19px;*/
    /*padding-inline: 1.2rem;*/
    /*border-radius: 1.2rem;
    padding-left: 1.8rem;
}*/
    .card-body p {
        margin-top: 0px;
        margin-bottom: 8px;
    }

.table-bordered {
    border-color: rgba(0, 0, 0, 0.15); 
}



.secciones-tramite .seccion {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    display: flex;
    align-items: center; /* Centrado vertical */
}

    .secciones-tramite .seccion:last-child {
        border-bottom: none;
    }

.contenido-seccion {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.descripcion {
    color: #545b62; 
    font-weight: 400;
    margin-bottom: 0;

}

/*.descripcion {
    color: #545b62;
    font-weight: 400;
    font-size: 1rem;*/ /* ajusta al tamaño que uses en los <span> */
    /*margin-bottom: 0.5rem;
}*/

.tamaño-inciso {
    color: #545b62;
    font-weight: 400;
    margin-bottom: 0;
}


.borde-superior {
    border-top: 1px solid rgba(0, 0, 0, 0.08); /* Línea  arriba */
    padding-top: 1rem;
    margin-top: 1rem;
}

.descripcion {
    color: #545b62;
    font-weight: 400;
    margin-bottom: 0;
}

.capitalize-sentence {
    text-transform: lowercase;
}

    .capitalize-sentence::first-letter {
        text-transform: uppercase;
    }


