*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
}

header{
	width:100%;
	padding:40px;
	color:white;
	text-align: center;
	background: url(imatges/gif_head.gif);
	
}

nav ul{
	list-style: none;
	background:#224716
}

nav ul li{
	display: inline-block;
	padding: 20px;
	transition: all ease-in-out 250ms;
}

ul li a{
	
	color: white;
	text-decoration: none;
}
nav ul li:hover{
	background:#7ABD72;
	
}
/* HEADER */
.header {
    width: 100%;
    padding: 20px 40px;
    background: #111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.header .nav a:hover {
    color: #00c3ff;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: #f2f2f2;
}

.hero h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 25px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #00c3ff;
}

/* Contenedor de las cajas */
.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px;
}

/* Formato uniforme para todas las cajas */
.box {
    width: 40%;
    height: 400px; /* Mismo alto que el mapa */
    background: linear-gradient(145deg, #7fc867, #224716);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Titulos y párrafos */
.box h3 {
    margin: 0 0 15px 0;
    font-size: 1.8em;
    color: #fff;
}

.box p {
    font-size: 1.1em;
    color: #fff;
    line-height: 1.5em;
}

/* Hover para efecto moderno */
.box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* Iframe del mapa */
iframe {
    width: 100%;
    height: 400px;
    border-radius: 15px;
	align-items: center;
	justify-content: center;
    overflow: hidden;
    margin-bottom: 40px;
}



