*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial,sans-serif;
}

/* Fondo */

body {
  background-image: url(logo.png);
  background-size: 60%; /* antes era 120% */
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
  position: relative;
}

/* Capa transparente encima del fondo */
body::before{
content:"";
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.6);
z-index:-1;
}

/* Contenedor principal */
.container{
max-width:650px;
margin:auto;
background:rgba(255,255,255,0.6);
padding:30px;
border-radius:10px;
text-align:center;
}

header{
background:#1e7f3f;
color:white;
padding:18px;
text-align:center;
}

nav{
background:#145c2c;
padding:10px;
text-align:center;
}

nav a{
color:white;
text-decoration:none;
margin:0 15px;
font-weight:bold;
}

nav a:hover{
text-decoration:underline;
}

.subtitulo{
font-size:20px;
font-weight:bold;
margin-top:20px;
margin-bottom:10px;
color:#1e4d2b;
text-align:left;
}

.descripcion{
font-size:16px;
color:#1e4d2b;
line-height:1.5;
text-align:left;
}

/* Botón contacto izquierda */
.contacto-btn{
position:fixed;
bottom:20px;
left:20px;
background:#1e7f3f;
color:white;
font-size:16px;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

/* Botón ubicación derecha */
.ubicacion-btn{
position:fixed;
bottom:20px;
right:20px;
background:#1e7f3f;
color:white;
font-size:16px;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
}

footer{
background:#111;
color:white;
text-align:center;
padding:15px;
margin-top:30px;
}