/* GENERAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: white;
    font-family: "Courier New", monospace;

    /* CENTRAR TODO EL BLOQUE COMPLETO (MENU + CONTAINER) */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;   /* centro vertical */
    align-items: center;       /* centro horizontal */
}

/* MENU */
.menu {
    display: flex;
    gap: 35px;
    
}
.menu a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}
.menu a:hover,
.menu a.active {
    text-decoration: underline;
    color: #701801;
    font-size: 16px;
    
}

/* MAIN LAYOUT */
.container {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: center;

    padding: 10px 10px;
    border: 1px solid #fff;
    background: #fff;
    flex-direction: row; /* <--- OBLIGA lado a lado */
    min-width: 600px;    /* <--- GARANTIZA espacio para ambos */
}

/* LEFT IMAGE */
.left img {
    width: 280px;
    border: 1px solid black;
}

/* RIGHT TEXT */
.right {
    margin-top: 40px;
    font-size: 14px;
   line-height: 14px;
    margin-left: 20px; /* ⬅️ fuerza que se vaya a la derecha */
    text-align: right;
}
.label {
    display: inline-block;
    border: 1px solid black;
    padding: 3px 10px;
    margin: 15px 0;
    font-size: 13px;
}

.small-link {
    text-decoration: none;
    color: #701801;
    font-size: 13px;
}
.small-link:hover {
    text-decoration: underline;
}

.link {
    text-decoration: none;
    color: #000;
    font-size: 13px;
}
.link:hover {
    text-decoration: underline;
    color: #701801;
    font-size: 14px;
}

.section-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.tooltip {
  position: relative;
  display: inline-block;
  font-family: inherit;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 140px;            /* cuadrado */
  height: 200px;           /* cuadrado */
  background-color: #000;  /* fondo negro */
  color: #fff;
  padding: 10px;
  border-radius: 0;        /* sin bordes redondos, cuadrado */
  font-family: inherit;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 105%;              /* lo coloca a la derecha del container */
  transform: translateY(-50%);
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

