@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');

html { }

/* ...existing code... */

body {
    background-image: url('/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

img.png-shadow {
    -webkit-filter: drop-shadow(5px 5px 5px #0000003a);
	filter: drop-shadow(5px 5px 5px #0000003a);
}

img.box-shadow {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.vertical-green-line {
    width: 15px;
    height: auto;
    background-color: #4fb366; /* Bootstrap verde */
    margin: 0 auto;
    border-radius: 4px;
    margin: 10px;
}

h1, h2, h3, h4, h5, h6, .bebas {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h2 {
    color: #1f6a31; /* Bootstrap verde */
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 22px;
    text-align: center;
}

p , li, a, span, div, .istok {
  font-family: "Istok Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-size: 14px;
}

.rowGris {
    background-color: #f8f9fa90; /* Bootstrap gris claro */
    border-radius: 8px;
    padding: 5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin: 5px 0;
    transition: background-color 0.3s ease;
}

.footer  {
    text-align: center;
    font-size: 10px;
    color: #6c7d6d; 
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

a  {
    text-align: center;
    font-size: 10px;
    color: #6c7d6d; 
}

#logo {
    z-index: -1000;
}

.nav-link {
    font-weight: 600;
    color: #1f6a31; /* Bootstrap verde */

}