body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  color: #333;
}
/* Fondo y padding del menú */
#Menu {
    background-color: #002244;
    padding: 10px 0;
}

/* Lista en línea */
#Menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
    overflow-x: auto;
}

/* Ítems del menú */
#Menu ul li {
    font-size: 14px;
    white-space: nowrap;
}

/* Enlaces menú: color visible, padding, transición */
#Menu ul li a {
    color: #24629c; /* color claro para visibilidad */
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Al pasar el cursor */
#Menu ul li a:hover {
    background-color: #0099ff; /* azul más vivo */
    color: #fff; /* texto blanco */
    box-shadow: 0 0 8px rgba(0, 153, 255, 0.7); /* brillo sutil */
    cursor: pointer;
}





section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
}
section ul {
  list-style: none;
  padding: 0;
}
section ul li {
  margin: 8px 0;
  border-bottom: 1px solid #ddd;
}
section ul li a {
  text-decoration: none;
  color: #0077cc;
  font-weight: bold;
  display: block;
  padding: 10px;
  transition: color 0.3s;
}
section ul li a:hover {
  color: #eca023;
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .selecciones-galeria {
    flex-direction: column;
    align-items: center;
  }
  .seleccion {
    width: 80%;
    max-width: 300px;
  }
  .seleccion img {
    width: 100%;
    height: auto;
  }
  section h1 {
    font-size: 24px;
    margin-top: 20px;
  }
  nav {
    padding: 15px;
  }
  nav ul li a {
    font-size: 16px;
  }
}

.selecciones-galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.seleccion {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 130px;
  text-align: center;
}

.seleccion img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.seleccion img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.seleccion p {
  margin-top: 8px;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}
/*alemania*/
.alemania-body {
  background-color: #f2f2f2;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.alemania-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-left: 10px solid #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
}
.alemania-section h2 {
  font-size: 26px;
  color: #000;
  margin-bottom: 15px;
  border-bottom: 2px solid #999;
  padding-bottom: 5px;
}
.alemania-section ul li strong {
  color: #b30000;
}
.alemania-footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: 0.95rem;
    margin-top: 3rem;
}
.alemania-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    background: linear-gradient(to right, #000000, #d7d7d7, #ff0000);
    border-top: 3px solid #000000;
    margin-top: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    border-radius: 0 0 8px 8px;
}

.alemania-arrow,
.alemania-home {
    text-decoration: none;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    color: #1a1a1a;
    background-color: #f8f8f8;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #bfbfbf;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: inline-block;
}

.alemania-arrow:hover,
.alemania-home:hover {
    background-color: #000000;
    color: #ffffff;
    transform: scale(1.05);
}


/*Argentina*/
.argentina-body {
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
}
.argentina-header {
  background: linear-gradient(90deg, #74acdf, #ffffff, #74acdf); 
  color: #002b5c;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.argentina-header h1 {
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.argentina-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-left: 10px solid #74acdf;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.argentina-section h2 {
  color: #005baa;
  font-size: 24px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.argentina-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.argentina-section ul {
  padding-left: 20px;
}
.argentina-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.argentina-section ul li strong {
  color: #0077cc;
}
.argentina-footer {
  background-color: #d7ecf8;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: #002c5a;
  border-top: 2px solid #74acdf;
  margin-top: 40px;
}
.argentina-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 20px; 
    background: linear-gradient(to right, #74acdf, #ffffff, #74acdf);
    border-top: 3px solid #005baa;
    margin-top: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap; 
}
.argentina-arrow,
.argentina-home {
    text-decoration: none;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    color: #005baa;
    background-color: #e0f4ff;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #74acdf;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: inline-block;
}

.argentina-arrow:hover,
.argentina-home:hover {
    background-color: #74acdf;
    color: white;
    transform: scale(1.05);
}
/*Brasil*/
.brasil-body {
  margin: 0;
  padding: 0;
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1b1b1b;
}
.brasil-header {
  background: linear-gradient(90deg, #009c3b, #ffdf00, #009c3b); 
  color: #002776;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.brasil-header h1 {
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.brasil-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-left: 10px solid #009c3b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.brasil-section h2 {
  color: #006400;
  font-size: 24px;
  border-bottom: 2px solid #ffdf00;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.brasil-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.brasil-section ul {
  padding-left: 20px;
}
.brasil-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.brasil-section ul li strong {
  color: #ffdf00;
}
.brasil-footer {
  background-color: #e6f7db;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: #004d00;
  border-top: 2px solid #009c3b;
  margin-top: 40px;
}
.brasil-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    gap: 20px;
    background: linear-gradient(to right, #009c3b, #ffdf00, #009c3b);
    border-top: 3px solid #007d29;
    margin-top: 40px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap;
    border-radius: 0 0 8px 8px;
}

.brasil-arrow,
.brasil-home {
    text-decoration: none;
    font-weight: bold;
    font-family: 'Segoe UI', sans-serif;
    color: #004400;
    background-color: #fffcb7;
    padding: 12px 20px;
    border-radius: 8px;
    border: 2px solid #009c3b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: inline-block;
}

.brasil-arrow:hover,
.brasil-home:hover {
    background-color: #009c3b;
    color: white;
    transform: scale(1.05);
}
/*españa*/
.espana-body {
  margin: 0;
  padding: 0;
  background-color: #f3f3f3;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
}
.espana-header {
  background: linear-gradient(90deg, #aa151b, #f1bf00, #aa151b); 
  color: #ffffff;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.espana-header h1 {
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.espana-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-left: 10px solid #aa151b;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.espana-section h2 {
  color: #aa151b;
  font-size: 24px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.espana-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.espana-section ul {
  padding-left: 20px;
}
.espana-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.espana-section ul li strong {
  color: #f1bf00;
}
.espana-footer {
  background-color: #ffeec2;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: #aa151b;
  border-top: 2px solid #f1bf00;
  margin-top: 40px;
}
.espana-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f4f4f4;
    border-top: 1px solid #ccc;
}

.nav-arrow, .nav-home {
    text-decoration: none;
    font-weight: bold;
    color: #d10000;
    padding: 10px 15px;
    border: 2px solid #d10000;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-arrow:hover, .nav-home:hover {
    background-color: #d10000;
    color: #fff;
}
/*italia*/
.italia-body {
  background-color: #fdfdfd;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.italia-header {
  background: linear-gradient(90deg, #008C45, #F4F5F0, #CD212A);
  color: #002b5c;
  text-align: center;
  padding: 30px;
}
.italia-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-left: 10px solid #008C45;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.italia-section h2 {
  color: #008C45;
  border-bottom: 2px solid #ddd;
  font-size: 24px;
}
.italia-footer {
  background-color: #e0f4e4;
  text-align: center;
  padding: 20px;
  color: #004d00;
  border-top: 2px solid #008C45;
}
.italia-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #008C45;
    padding: 10px 20px;
    border-radius: 8px;
}

.italia-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.italia-navigation a:hover {
    background-color: #CD212A; 
    border-radius: 4px;
}
/*mexico*/
.mexico-body {
  background-color: #fcfcfc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.mexico-header {
  background: linear-gradient(90deg, #006847, #ffffff, #ce1126);
  color: #000000;
  text-align: center;
  padding: 30px;
}
.mexico-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-left: 10px solid #006847;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.mexico-section h2 {
  color: #006847;
  border-bottom: 2px solid #e0e0e0;
  font-size: 24px;
}
.mexico-footer {
  background-color: #dff3e8;
  text-align: center;
  padding: 20px;
  color: #006847;
  border-top: 2px solid #006847;
}
.mexico-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    padding: 20px 10px;
    max-width: 960px;
    background-color: #f2f2f2;
    border-top: 3px solid #006847;
    border-bottom: 3px solid #ce1126;
    font-family: 'Segoe UI', sans-serif;
}

.mexico-navigation a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.mexico-navigation a:hover {
    transform: scale(1.05);
}

.mexico-navigation a.mexico-arrow {
    background-color: #006847;
    color: #ffffff;
    border-color: #00462f;
}

.mexico-navigation a.mexico-arrow:hover {
    background-color: #00965e;
}

.mexico-navigation a.mexico-home {
    background-color: #ce1126;
    color: #ffffff;
    border-color: #a60d1f;
}

.mexico-navigation a.mexico-home:hover {
    background-color: #e91f2b;
}
/*paises bajos*/
.paises-bajos-body {
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

.paises-bajos-header {
  background: linear-gradient(90deg, #21468B, #FFFFFF, #AE1C28);
  color: #000000;
  text-align: center;
  padding: 30px 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.paises-bajos-header h1 {
  margin-bottom: 10px;
  font-size: 32px;
}

.paises-bajos-header p {
  font-style: italic;
  font-size: 18px;
}

.paises-bajos-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-left: 10px solid #21468B;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.paises-bajos-section:hover {
  transform: translateY(-4px); 
}

.paises-bajos-section h2 {
  color: #21468B;
  border-bottom: 2px solid #e0e0e0;
  font-size: 24px;
  margin-bottom: 15px;
}

.paises-bajos-section ul {
  padding-left: 20px;
  list-style: square;
}

.paises-bajos-section video {
  margin-top: 15px;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}


.paises-bajos-footer {
  background-color: #e0e6f8;
  text-align: center;
  padding: 20px;
  color: #21468B;
  border-top: 2px solid #21468B;
  font-size: 14px;
}


.paisesbajos-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FF6600;
    border-radius: 8px;
}

.paisesbajos-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.paisesbajos-navigation a:hover {
    background-color: #21468B;
    border-radius: 4px;
}
/*francia*/
.francia-body {
  background-color: #fefefe;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1c1c1c;
}
.francia-header {
  background: linear-gradient(90deg, #0055A4, #ffffff, #EF4135); 
  color: #002654;
  text-align: center;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.francia-header h1 {
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}
.francia-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-left: 10px solid #0055A4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.francia-section h2 {
  color: #0055A4;
  font-size: 24px;
  border-bottom: 2px solid #ddd;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.francia-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.francia-section ul {
  padding-left: 20px;
}
.francia-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.francia-section ul li strong {
  color: #EF4135;
}
.francia-footer {
  background-color: #e2e8f6;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: #002654;
  border-top: 2px solid #0055A4;
  margin-top: 40px;
}
.francia-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0055A4; 
    padding: 10px 20px;
    border-radius: 8px;
}

.francia-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.francia-navigation a:hover {
    background-color: #EF4135; 
    border-radius: 4px;
}
/*inglaterra*/
.inglaterra-body {
  background-color: #fafafa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
}
.inglaterra-header {
  background: linear-gradient(90deg, #ffffff, #c8102e, #ffffff); 
  color: #002147;
  text-align: center;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.inglaterra-header h1 {
  margin: 0;
  font-size: 32px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}
.inglaterra-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: #ffffff;
  border-left: 10px solid #c8102e;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.inglaterra-section h2 {
  color: #c8102e;
  font-size: 24px;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 15px;
  padding-bottom: 5px;
}
.inglaterra-section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}
.inglaterra-section ul {
  padding-left: 20px;
}
.inglaterra-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}
.inglaterra-section ul li strong {
  color: #c8102e;
}
.inglaterra-footer {
  background-color: #f1f2f6;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: #002147;
  border-top: 2px solid #c8102e;
  margin-top: 40px;
}

.inglaterra-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #00247D; 
    padding: 10px 20px;
    border-radius: 8px;
}

.inglaterra-navigation a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    transition: background 0.3s ease;
}

.inglaterra-navigation a:hover {
    background-color: #CF142B;
    border-radius: 4px;
}
/*uruguay*/
body.uruguay-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #e0f7fa, #ffffff);
    color: #222;
    margin: 0;
    padding: 0;
}
.uruguay-header {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.uruguay-header h1 {
    margin: 0;
    font-size: 2.5rem;
}
.uruguay-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-left: 6px solid #1e88e5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.uruguay-section h2 {
    color: #1565c0;
    margin-top: 0;
}
.uruguay-section ul {
    list-style-type: square;
    padding-left: 1.5rem;
}
.uruguay-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.uruguay-footer {
    background-color: #1e88e5;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.95rem;
}
.uruguay-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    padding: 20px 10px;
    max-width: 960px;
    background-color: #f5f9ff;
    border-top: 3px solid #005daa;
    border-bottom: 3px solid #f7c948;
    font-family: 'Segoe UI', sans-serif;
}

.uruguay-navigation a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.uruguay-navigation a.uruguay-arrow {
    background-color: #0083c9;
    color: #ffffff;
    border-color: #0066a4;
}

.uruguay-navigation a.uruguay-arrow:hover {
    background-color: #339cd9;
    transform: scale(1.05);
}

.uruguay-navigation a.uruguay-home {
    background-color: #f7c948;
    color: #003366;
    border-color: #e6b800;
}

.uruguay-navigation a.uruguay-home:hover {
    background-color: #ffe08a;
    transform: scale(1.05);
}
/*portugal*/
body.portugal-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #fff8e1, #ffffff);
    color: #222;
    margin: 0;
    padding: 0;
}
.portugal-header {
    background-color: #c62828; 
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.portugal-header h1 {
    margin: 0;
    font-size: 2.5rem;
}
.portugal-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fefefe;
    border-left: 6px solid #2e7d32; 
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.portugal-section h2 {
    color: #c62828;
    margin-top: 0;
}
.portugal-section ul {
    list-style-type: square;
    padding-left: 1.5rem;
}
.portugal-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}
.portugal-footer {
    background-color: #2e7d32;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
    font-size: 0.95rem;
}
.portugal-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
    padding: 20px 10px;
    max-width: 960px;
    background-color: #f9f9f9;
    border-top: 3px solid #006600;
    border-bottom: 3px solid #b22222;
    font-family: 'Segoe UI', sans-serif;
}

.portugal-navigation a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.portugal-navigation a.portugal-arrow {
    background-color: #006600;
    color: #ffffff;
    border-color: #004d00;
}

.portugal-navigation a.portugal-arrow:hover {
    background-color: #009900;
    transform: scale(1.05);
}

.portugal-navigation a.portugal-home {
    background-color: #b22222;
    color: #ffffff;
    border-color: #8b1a1a;
}

.portugal-navigation a.portugal-home:hover {
    background-color: #cc3333;
    transform: scale(1.05);
}

/*USA*/

.usa-body {
    background-color: #f8f8f8;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}


.usa-header {
    background-color: #002868; /* Azul marino */
    color: #ffffff;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #bf0a30; /* Rojo */
}

.usa-header h1 {
    margin: 0;
    font-size: 2.4em;
}


.usa-section {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-left: 8px solid #bf0a30; /* Rojo */
    border-right: 8px solid #002868; /* Azul marino */
    border-radius: 8px;
}

.usa-section h2 {
    color: #002868;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.usa-section p {
    font-size: 1.05em;
    color: #333333;
    margin-bottom: 15px;
}

.usa-section ul {
    padding-left: 20px;
}

.usa-section ul li {
    margin-bottom: 8px;
    font-size: 1em;
    color: #222222;
}

.usa-video iframe {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}


.usa-footer {
    background-color: #002868;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 0.95em;
    margin-top: 40px;
}

.usa-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 30px auto;
    padding: 20px 10px;
    background-color: #f0f0f0;
    border-top: 3px solid #002868;
    border-bottom: 3px solid #bf0a30;
}

.usa-navigation a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.usa-navigation a.usa-arrow {
    background-color: #002868;
    color: #ffffff;
    border-color: #001e4d;
}

.usa-navigation a.usa-arrow:hover {
    background-color: #305a9e;
    transform: scale(1.05);
}

.usa-navigation a.usa-home {
    background-color: #bf0a30;
    color: #ffffff;
    border-color: #990021;
}

.usa-navigation a.usa-home:hover {
    background-color: #e1203f;
    transform: scale(1.05);
}
/*Colombia*/
/* Fondo general */
.colombia-body {
    background-color: #fdfdfd;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

/* Encabezado */
.colombia-header {
    background-color: #FFD700; /* Amarillo bandera */
    color: #002776;
    padding: 30px;
    text-align: center;
    border-bottom: 4px solid #CE1126; /* Rojo */
}

.colombia-header h1 {
    margin: 0;
    font-size: 2.4em;
}

/* Secciones */
.colombia-section {
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-left: 8px solid #FFD700; /* Amarillo */
    border-right: 8px solid #002776; /* Azul oscuro */
    border-radius: 8px;
}

.colombia-section h2 {
    color: #CE1126; /* Rojo */
    font-size: 1.8em;
    margin-bottom: 10px;
}

.colombia-section p {
    font-size: 1.05em;
    color: #333333;
    margin-bottom: 15px;
}

.colombia-section ul {
    padding-left: 20px;
}

.colombia-section ul li {
    margin-bottom: 8px;
    font-size: 1em;
    color: #222222;
}

/* Video */
.colombia-video iframe {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/* Footer */
.colombia-footer {
    background-color: #002776;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 0.95em;
    margin-top: 40px;
}

/* Navegación */
.colombia-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 30px auto;
    padding: 20px 10px;
    background-color: #f0f0f0;
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #CE1126;
}

.colombia-navigation a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    padding: 12px 18px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 2px solid transparent;
}

.colombia-navigation a.colombia-arrow {
    background-color: #002776;
    color: #ffffff;
    border-color: #001d4d;
}

.colombia-navigation a.colombia-arrow:hover {
    background-color: #335aa2;
    transform: scale(1.05);
}

.colombia-navigation a.colombia-home {
    background-color: #FFD700;
    color: #002776;
    border-color: #e6c200;
}

.colombia-navigation a.colombia-home:hover {
    background-color: #ffef8c;
    transform: scale(1.05);
}

/*CHILE*/
body.chile-body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
    color: #333;
}

.chile-header {
    background-color: #d80000; 
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 6px solid #002664; 
}

.chile-section {
    max-width: 960px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-left: 6px solid #002664;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.chile-section h2 {
    color: #d80000;
    margin-bottom: 1rem;
}

.chile-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.chile-section li {
    margin-bottom: 0.8rem;
}

.chile-video iframe {
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.chile-footer {
    background-color: #002664;
    color: white;
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.95rem;
}

.chile-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f0f0f0;
    border-top: 3px solid #d80000;
    border-bottom: 3px solid #002664;
    border-radius: 6px;
}

.chile-arrow, .chile-home {
    text-decoration: none;
    font-weight: bold;
    color: #d80000;
}

.chile-arrow:hover,
.chile-home:hover {
    color: #002664;
    text-decoration: underline;
}

/*JAPON*/
body.japon-body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
    color: #222;
}

.japon-header {
    background-color: #e60026; 
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 5px solid #002b5c;
}

.japon-section {
    max-width: 960px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-left: 6px solid #002b5c;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.japon-section h2 {
    color: #e60026;
    margin-bottom: 1rem;
    font-weight: bold;
}

.japon-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.japon-section li {
    margin-bottom: 0.8rem;
}

.japon-video iframe {
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.japon-footer {
    background-color: #002b5c;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.japon-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f0f0f0;
    border-top: 3px solid #e60026;
    border-bottom: 3px solid #002b5c;
    border-radius: 6px;
}

.japon-arrow, .japon-home {
    text-decoration: none;
    font-weight: bold;
    color: #e60026;
}

.japon-arrow:hover,
.japon-home:hover {
    color: #002b5c;
    text-decoration: underline;
}

/*KOREADELSUR*/
body.corea-body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
    color: #222;
}

.corea-header {
    background-color: #c60c30; 
    color: white;
    padding: 2rem;
    text-align: center;
    border-bottom: 6px solid #003478; 
}

.corea-section {
    max-width: 960px;
    margin: 2rem auto;
    background-color: white;
    padding: 2rem;
    border-left: 6px solid #003478;
    border-radius: 8px;
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.06);
}

.corea-section h2 {
    color: #c60c30;
    margin-bottom: 1rem;
    font-weight: bold;
}

.corea-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

.corea-section li {
    margin-bottom: 0.8rem;
}

.corea-video iframe {
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.corea-footer {
    background-color: #003478;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.95rem;
    margin-top: 2rem;
}

.corea-navigation {
    display: flex;
    justify-content: space-between;
    max-width: 960px;
    margin: 2rem auto;
    padding: 1rem;
    background-color: #f1f1f1;
    border-top: 3px solid #c60c30;
    border-bottom: 3px solid #003478;
    border-radius: 6px;
}

.corea-arrow, .corea-home {
    text-decoration: none;
    font-weight: bold;
    color: #c60c30;
}

.corea-arrow:hover,
.corea-home:hover {
    color: #003478;
    text-decoration: underline;
}