/* Estil general */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
}

header {
    background-color: #5cbafd;
    color: black;
    padding: 15px;
    text-align: center;
}

/* Imatge header */
img {
    width: 6.7%;
    height: 6.7%;
    float: left;
}

/* Dades header */
.dades {
    padding-top: 1%;
    text-align: right;
    font-size: 14px;
    float: right;
    padding-left: 0;
    margin-left: 0; 
    list-style-position: inside; 
    list-style-type: none;
}

/* Submenú */
nav ul li ul.submenu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #5cbafd;
    padding: 10px;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
    list-style: none;
    flex-direction: row;
    gap: 10px;
    z-index: 999;
}

nav ul li {
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0px;
}

nav ul li {
    display: inline;
    margin: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5%;
}

nav ul li a: hover {
    background-color: black;
}

/* Links submenú */
li a:link {
    color: black;
    text-decoration-line: none;
}

li a:visited {
    color: black;
    text-decoration-line: none;
}

li a:hover {
    color: aliceblue;
    text-decoration-line: none;   
}

li a:active {
   color: white;
    text-decoration-line: none;  
}

/** Títol qui som **/
.titol {
    text-align: center;
    font-weight: bold;
    font-size: 1.5em; 
    margin: 1em 0;
}

.titol {
    font-size: 17px;
    color: black;
    margin-bottom: 1em;
    text-align: center;
}

/* Caixes */
.caixa {
    background-color: #ededed;
    padding: 10px;
    text-align: center;
    align-items: center;
    float: center;
    width: 100%;
    padding: 10px;
    border: 1px solid #ededed;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 8px;
}

.caixes {
    display: flex;
    justify-content: space-between;
}

    
.caixa img {
    width: 100%; /* Ample fix */
    height: 100%; /* Alt fix */
    object-fit: contain; /* Imatge s'ajusti */
    border-radius: 8px;
}

/* Caixa objectius */
.contenidor {
    width: 100%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Caixa que ocupa tota la pàgina verticalment */
.caixa-text {
    width: 80%;
    height: 18%;
    background-color: #ffffff;
    border-radius: 2px;
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Paràgraf text objectius */
.paragraf {
    font-size: 2;
    color: black;
    line-height: 2;
    text-align: center;
    max-width: 800px;
}

/* Títol coneixe'ns */
.coneixe-ns {
    padding-top: 10px;
    font-size: 24px;
}

/* Contingut caixa coneixe'ns */
.coneix-text {
    font-size: 18px;
    color: black;
    line-height: 2;
    text-align: match-parent;
    margin: 40px; 
}

/* Peu de pàgina */
.i { 
    width: 40px;
    height: 40px;
    padding-left: 27px;
    margin-right: none;
    
}

.container {
    max-width: 1200px; 
    margin: 0 auto;
}
.footer {
    background-color: #5cbafd;
    padding: 80px 0;  
}
.footer-row {
    display: flex;
    flex-wrap: wrap;
}

.footer-links {
    width: 25%;
    padding:  0 15px;
    text-align: left;
    margin-left: auto;
}

.footer-links h4 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 25px;
    margin-left: 105px;
    font-weight: 500;
    border-bottom: 2px solid #000000;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: bisque;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
    text-align: left;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a:hover {
    color: #000000;
    padding-left: 6px;
}

.copy {
    text-align: center;
    padding: 5px;
    margin-top: 5px;
}

.fotos {
    object-fit: contain;
    display: block;
}

/** Disseny responsive **/ 
@media(max-width: 991px) {
.footer-row {
    text-align: center;
 }
    
.footer-links {
    width: 100%;
    margin-bottom: 30px;
}

