html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: Arial, sans-serif;
}

/* Logo y encabezado */
header {
    text-align: center;
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

/* Contenido principal */
main {
    padding: 20px;
    text-align: center;
}

/* Contenedor de productos */
.productos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.producto {
    flex: 1 1 300px;
    max-width: 300px;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
}

    .producto img {
        width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .producto h3 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 600px) {
    .productos {
        flex-direction: column;
        align-items: center;
    }

    .producto {
        width: 90%;
        max-width: none;
    }
}
.btn-declaracion {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #007bff; /* azul Bootstrap */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
}

    .btn-declaracion:hover {
        background-color: #0056b3;
    }

.footer-compact {
    padding-top: 1px;
    padding-bottom: 1px;
    font-size: 0.85rem; /* opcional: para texto más pequeño */
}