﻿@font-face {
    font-family: 'amelia-basic-oblicua';
    src: url('/assets/fonts/amelia-basic-oblicua.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}


body {
    font-family: 'amelia-basic-oblicua', sans-serif;
    background-color: #EDEDED;
    background-image: url(/assets/images/DenunciasLayout/FondoCapturaMultiply.png);
    background-repeat: no-repeat;
    background-position: 60% 80%;
    background-size: 80%;
    background-attachment: fixed;
}

.CenterDenComienzo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 60vh !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.title-main {
    color: #14337D;
    font-size: 9vh;
    margin: 6vh;
}

.sub-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; 
}

.Subtitulo {
    color: #606060;
    font-size: 6vh;
}

.botonComenzar {
    background-color: #005AA8;
    color: white;
    padding: 0px 60px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 5vh;
}

.botonComenzar:hover {
    background-color: #14337D;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.CenterDenOpciones {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50vh !important;
    text-align: center !important;
    margin: 0 auto !important;
}

.sub-content-cardOpciones {
/*    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;*/
    display: flex;
    flex-direction: row; /* Alineación horizontal de las cards */
    gap: 20px; /* Espacio entre las cards */
    justify-content: center; /* Centra las cards horizontalmente */
}

.Subtitulo-Opciones {
    color: #606060;
    font-size: 6vh;
    margin-bottom: 3vh;
}

.card {
    width: 75vh;
    height: 30vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05); /* Aumenta el tamaño de la card al hacer hover */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3); /* Sombra más fuerte al hacer hover */
}

.card-title {
    color: #606060;
    text-align: center;
}

.card-title-sub {
    color: #14337D;
    text-align: center;
}



    .CenterDenFinal {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 85vh !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

.sub-content-finalizar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 3vh;
}

.SubtituloFinal {
    color: #14337D;
    font-size: 4vh;
}

.imgDiv {
    text-align: center;
    margin: 20px;
}

.QRimg {
    width: 14vw;
    height: 14vw;
    object-fit: cover;
}

.textPlano {
    color: #606060;
    font-size: 1.5vh;
    max-width: 50%;
    word-wrap: break-word;
    text-align: center;
}

.textPlanoF {
    color: #606060;
    font-size: 2vh;
}

.SubtituloFinalM {
    color: #14337D;
    font-size: 3vh;
    max-width: 55% !important;
    word-wrap: break-word;
    text-align: center;
}