body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    font-weight: 800;
    font-size: 12px;
    background-color: #ffffff;
}

.cabecera-seccion {
    text-align: center;
    width: 80%;
    margin: 80px 0 0 135px;
    margin-top: 170px;
    height: 60px;
    color: #49774a;
    border-bottom: 5px solid #49774a;
}

.titulo {
    font-size: 32px;
}

/* Tablas */
.tabla1 {
    margin-top: 50px;
}

table {
    font-size: 16px;
    font-weight: 400;
    border-collapse: collapse;
    width: 50%;
    margin: 20px auto; /* Centrar la tabla */
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dddddd;
}

th {
    background-color: #47794a;
    color: #ffffff;
    font-weight: bold;
}

td {
    background-color: #f9f9f9;
    color: #555555;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #e9e9e9;
}

th:first-child, td:first-child {
    border-top-left-radius: 10px;
}

th:last-child, td:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.info-icon {
    width: 32px;
    border-radius: 15px;
    height: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-icon:hover {
    width: 32px; /* Mantiene el tamaño del gif al pasar el cursor */
    height: 32px; /* Mantiene el tamaño del gif al pasar el cursor */
    animation: play-gif 1s steps(8) infinite; /* Añade animación */
}

.info-icono {
    text-align: center;
    margin-bottom: 50px;
}

/* Información desplegada */
.info-container {
    width: 50%;
    margin: 20px auto;
    padding: 20px;
    padding-top: 100px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color: #555555;
}

.info-container h2 {
    color: #49774a;
    font-size: 24px;
    margin-bottom: 10px;
}

.info-container p {
    line-height: 1.5;
    margin-top: 0;
}

.tarjeta-imagen {
    height: 100px;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 1s ease-in-out;
}