h2{
    font-weight: 900 !important;
    text-align: center;
    color: #1f2937 !important;
    font-size: 18px !important;
}
h2 span{
    color: #6B8AA7;
}
h3{
    font-weight: bold !important;
    color: #1f2937;
    font-size: 18px !important;
}
p{
    text-align: justify;
}



/* ESTILO PARA BOTONES */
.container-botones{
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    margin-top: 7px;
}
@media screen and (min-width: 647px){
    .container-botones{
        display: flex;
        flex-direction: row;
        gap: 12px;
        justify-content: center;
        margin-top: 7px;
    }
}


/* ESTILO PARA BOTON (1)*/
.boton1 {
    position: relative;
    padding: 8px 35px;
    background-color: #1F2937;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    /* box-shadow: 0 6px 12px rgba(31, 41, 55, 0.2); */
    outline: none;
    margin-bottom: 15px;
}

.boton1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent
    );
    transition: all 0.6s ease;
}

.boton1:hover::before {
    left: 100%;
}

.folder-btn:hover {
    background-color: #374151;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(31, 41, 55, 0.3);
}

.boton1::after {
    content: '📁';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s ease;
    right: 15px;
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* .boton1:hover::after {
    right: 15px;
    transform: translateY(-50%) scale(1);
    opacity: 1;
} */

.boton1 .text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
    transform: translateX(-15px);
}


/* .boton1:hover .text {
    transform: translateX(-15px);
} */

/* Efecto de destello */
.boton1 .shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg, 
        transparent 0%, 
        rgba(255,255,255,0.2) 50%, 
        transparent 100%
    );
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.boton1:hover .shine {
    opacity: 1;
}



/* ESTILO PARA BOTON (2) */
.boton2 {
    position: relative;
    padding: 8px 35px;
    background-color: #1F2937;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    outline: none;
    margin-bottom: 15px;
}
.boton2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent
    );
    transition: all 0.6s ease;
}

.boton2:hover::before {
    left: 100%;
}
.folder-btn:hover {
    background-color: #374151;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(31, 41, 55, 0.3);
}
.boton2 .text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
}
.boton2:hover .shine {
    opacity: 1;
}


/* ESTILO PARA BOTON (3) */
.boton3 {
    position: relative;
    padding: 8px 35px;
    background-color: #aa0000;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    outline: none;
    margin-bottom: 15px;
    text-align: center;
}
.boton3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.2), 
        transparent
    );
    transition: all 0.6s ease;
}

.boton3:hover::before {
    left: 100%;
}
.folder-btn:hover {
    background-color: #374151;
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(31, 41, 55, 0.3);
}
.boton3 .text {
    position: relative;
    z-index: 1;
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 12px;
}
.boton3:hover .shine {
    opacity: 1;
}


/* ESTILO PARA TEXTAREA */
textarea{
    resize: none !important;
    display: block;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 12px; /* Bordes más redondeados */
    font-size: 14px;
    /* background-color: white; */
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}