body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  margin-right: 0.75rem;
}

.brand {
  font-weight: bold;
  font-size: 1.2rem;
  color: #222;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-right nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-right nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 0.5em;
  transition: color 0.3s ease;
}

.navbar-right nav ul li a:hover {
  color: #007aff;
}

/* Estilo de banderas */
#lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#lang-switch img {
  width: 24px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#lang-switch img:hover {
  transform: scale(1.1);
}

/* Contenido principal */
main {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

.section {
  display: none;
  margin-bottom: 4rem;
}

.section.active {
  display: block;
}

h1, h2 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.image-placeholder {
  margin: 2rem 0;
  padding: 5rem 1rem;
  background-color: #f9f9f9;
  border: 2px dashed #ddd;
  text-align: center;
  font-style: italic;
  color: #666;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #fafafa;
  border-top: 1px solid #e0e0e0;
  font-size: 0.9rem;
  color: #999;
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .navbar-right {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-right nav ul {
    flex-direction: column;
  }

  #lang-switch {
    margin-top: 0.5rem;
  }
}


/* Mejora visual suave para Crisalida - TipografÃ­a y Colores */

body {
  font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
  background-color: #f3f5f4;
  color: #2f2f2f;
  margin: 40px;
}

h1, h2, h3 {
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

th {
  background-color: #ddeee2;
  color: #2c594f;
  text-align: left;
  padding: 12px 15px;
  font-size: 1em;
}

td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
  font-size: 0.95em;
}

td a {
  color: #378b6e;
  text-decoration: none;
}

td a:hover {
  text-decoration: underline;
}

#calendar {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

footer {
  text-align: center;
  color: #999;
  font-size: 0.9em;
  padding-top: 20px;
}

.panoramica {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 20px auto;
}

.navbar-right nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2px; /* espacio entre botones */
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-right nav ul li {
    font-size: 0.9em; /* achica las letras */
}

/*
.navbar-right nav ul li a {
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-right nav ul li a:hover {
    background-color: #dcead9;
    color: #2e5d4f;
*/    
}