/* ============================= */
/* Estilos generales del seminario ICON-S */
/* ============================= */

.sapam {
    border: 2px solid #ccc;
    padding: 10px;
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    margin: 20px; /* espacio alrededor del contenido */
}

.sapam p:first-child {
    font-weight: bold;
}

.sapam a {
    color: #007BFF;
    text-decoration: none;
}

.sapam a:hover {
    text-decoration: underline;
}

.center {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.center-div {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-size: 30px;
}

.p1 {
    padding-right: 15px;
    font-family: Calibri, sans-serif;
    margin-right: 10px;
    text-align: justify;
}

/* ============================= */
/* Imágenes */
/* ============================= */
.ima1 {
    max-width: 500px;
    width: 60%;
    display: block;
    margin: auto;
}

.ima3 {
    width: 200px;
    float: left;
    margin-right: 15px;
}

/* ============================= */
/* Responsive */
/* ============================= */
@media (max-width: 555px) {
    .ima3 {
        display: none;
    }
}

@media (min-width: 554px) {
    .ima3 {
        display: block;
    }

    .p1 {
        margin-left: 200px;
    }
}

/* ============================= */
/* Inputs: quitar flechas de number y date */
/* ============================= */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=date] {
    -moz-appearance: textfield;
}

/* ============================= */
/* Boton */
/* ============================= */

.btn-certificado {
    background-color: #009640;
    color: #ffffff;
    font-size: 20px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-certificado:hover {
    background-color: #007a2e;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.btn-certificado:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
