:root {
  --primary: #008080; /* Tu color Teal */
  --secondary: #00C6C8; /* Acento más claro */
  --neutral-light: #F4F4F4;
  --neutral-dark: #222222;
}

body {
  font-family: 'Manrope', sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  line-height: 1.6;
}

header {
    text-align:center; 
    padding:1rem; 
    background-color: var(--primary); 
    color:white;
}

h1, h2, h3 {
  font-family: 'Bree Serif', serif;
  color: var(--primary);
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Selector de Idioma */
.lang-switcher {
  text-align: right;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.lang-switcher button {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 8px;
  font-size: 0.9rem;
}
.lang-switcher button.active {
  background-color: var(--primary);
  color: white;
}

/* Botones y Enlaces */
a { color: var(--primary); text-decoration: none; font-weight: 500; }
a:hover { text-decoration: underline; }

.contact-button {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--primary);
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}
.contact-button:hover { opacity: 0.9; text-decoration: none; }

ul { padding-left: 1.2rem; }
li { margin-bottom: 0.5rem; }

footer {
  text-align: center;
  padding: 2rem;
  background-color: var(--neutral-dark);
  color: #888;
  font-size: 0.85rem;
  margin-top: auto;
}
